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

with stdenv.lib;

stdenv.mkDerivation {
  name = "libjpeg-8d";
  
  src = fetchurl {
    url = http://www.ijg.org/files/jpegsrc.v8d.tar.gz;
    sha256 = "1cz0dy05mgxqdgjf52p54yxpyy95rgl30cnazdrfmw7hfca9n0h0";
  };

  configureFlags = optional static "--enable-static --disable-shared";
  
  meta = {
    homepage = http://www.ijg.org/;
    description = "A library that implements the JPEG image file format";
    license = "free";
  };
}