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

32 lines
800 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib }:
assert !(stdenv ? cross) -> zlib != null;
stdenv.mkDerivation rec {
2015-08-06 09:37:07 +03:00
name = "libpng-1.2.53";
src = fetchurl {
url = "mirror://sourceforge/libpng/${name}.tar.xz";
2015-08-06 09:37:07 +03:00
sha256 = "02jwfqk1ahqfvbs9gdyb5v0123by9ws6m7jnfvainig7i7v4jpml";
};
propagatedBuildInputs = [ zlib ];
passthru = { inherit zlib; };
crossAttrs = stdenv.lib.optionalAttrs (stdenv.cross.libc == "libSystem") {
propagatedBuildInputs = [];
passthru = {};
};
configureFlags = "--enable-static";
meta = {
description = "The official reference implementation for the PNG file format";
homepage = http://www.libpng.org/pub/png/libpng.html;
2014-09-21 21:53:20 +04:00
license = stdenv.lib.licenses.libpng;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
branch = "1.2";
};
}