summary refs log tree commit diff
path: root/pkgs/development/libraries/libjpeg-turbo/default.nix
blob: f7135e4018d8b43f93b1547825f2732bd4277e7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, nasm }: 

stdenv.mkDerivation {
  name = "libjpeg-turbo-1.1.1";
  
  src = fetchurl {
    url = mirror://sourceforge/libjpeg-turbo/libjpeg-turbo-1.1.1.tar.gz;
    sha256 = "553b1f5a968fb9efc089623ed99be2aa6bc21586be92eb04848489c91a63f1e2";
  };

  buildInputs = [ nasm ];
  
  meta = {
    homepage = http://libjpeg-turbo.virtualgl.org/;
    description = "A faster (using SIMD) libjpeg implementation";
    license = "free";
  };
}