nixpkgs/pkgs/development/libraries/libpng/default.nix
Eelco Dolstra 259d0dd9ee * Gnome 2.14.3.
* GTK updates.
* Removed the bzip2 hack.

svn path=/nixpkgs/trunk/; revision=6104
2006-08-11 22:26:55 +00:00

14 lines
299 B
Nix

{stdenv, fetchurl, zlib}:
assert zlib != null;
stdenv.mkDerivation {
name = "libpng-1.2.12";
src = fetchurl {
url = ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.2.12.tar.bz2;
md5 = "2287cfaad53a714acdf6eb75a7c1d15f";
};
propagatedBuildInputs = [zlib];
inherit zlib;
}