nixpkgs/pkgs/development/libraries/libpng/default.nix
Eelco Dolstra ed3ebb7c2c * libjpeg updated to version 8.
* 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
2010-01-21 21:42:17 +00:00

23 lines
535 B
Nix

{stdenv, fetchurl, zlib}:
assert zlib != null;
stdenv.mkDerivation rec {
name = "libpng-1.4.0";
src = fetchurl {
url = "mirror://sourceforge/libpng/${name}.tar.gz";
md5 = "dfa01122db3be9808a8c9ace7d0580fd";
};
propagatedBuildInputs = [zlib];
inherit zlib;
meta = {
description = "The official reference implementation for the PNG file format";
homepage = http://www.libpng.org/pub/png/libpng.html;
license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
};
}