nixpkgs/pkgs/development/libraries/libpng/default.nix

23 lines
573 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib }:
assert zlib != null;
stdenv.mkDerivation rec {
2013-01-29 12:16:01 +00:00
name = "libpng-1.5.14";
src = fetchurl {
url = "mirror://sourceforge/libpng/${name}.tar.xz";
2013-01-29 12:16:01 +00:00
sha256 = "0m3vz3gig7s63zanq5b1dgb5ph12qm0cylw4g4fbxlsq3f74hn8l";
};
propagatedBuildInputs = [ zlib ];
passthru = { 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
};
}