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

stdenv.mkDerivation {
  name = "libjpeg-8";
  
  src = fetchurl {
    url = http://www.ijg.org/files/jpegsrc.v8.tar.gz;
    sha256 = "1b0blpk8v397klssk99l6ddsb64krcb29pbkbp8ziw5kmjvsbfhp";
  };
  
  meta = {
    homepage = http://www.ijg.org/;
    description = "A library that implements the JPEG image file format";
    license = "free";
  };
}