nixpkgs/pkgs/development/libraries/libpng/default.nix
Eelco Dolstra b908adc778 * libpng 1.2.32.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13002
2008-10-08 16:55:55 +00:00

22 lines
447 B
Nix

{stdenv, fetchurl, zlib}:
assert zlib != null;
stdenv.mkDerivation {
name = "libpng-1.2.32";
src = fetchurl {
url = mirror://sourceforge/libpng/libpng-1.2.32.tar.bz2;
md5 = "df4a20c6f24a6f642ae11c9a5a4ffa7f";
};
propagatedBuildInputs = [zlib];
inherit zlib;
meta = {
description = "The official reference implementation for the PNG file format";
homepage = http://www.libpng.org/pub/png/libpng.html;
};
}