ed3ebb7c2c
* libpng updated to 1.4.0. * For libjpegStatic, use a stdenv adapter to build a static library. svn path=/nixpkgs/branches/stdenv-updates/; revision=19605
17 lines
371 B
Nix
17 lines
371 B
Nix
{ 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";
|
|
};
|
|
}
|