nixpkgs/pkgs/development/libraries/libpng/default.nix
Eelco Dolstra ede6283180 * Revert libpng to 1.2.x because 1.4 breaks too many things.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19641
2010-01-24 23:14:26 +00:00

24 lines
537 B
Nix

{stdenv, fetchurl, zlib}:
assert zlib != null;
stdenv.mkDerivation rec {
name = "libpng-1.2.42";
src = fetchurl {
url = "mirror://sourceforge/libpng/${name}.tar.gz";
md5 = "562066eb8557db91156eaeb309458488";
};
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
};
}