mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
31aa281919
Part of fix for #11030. Also refactor meta.
32 lines
789 B
Nix
32 lines
789 B
Nix
{ stdenv, fetchurl, zlib }:
|
|
|
|
assert !(stdenv ? cross) -> zlib != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libpng-1.2.54";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libpng/${name}.tar.xz";
|
|
sha256 = "0wnjy7gqn0f24qrlggs7kl0ij59by413j1xmqp12n3vqh9j531fg";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zlib ];
|
|
|
|
passthru = { inherit zlib; };
|
|
|
|
crossAttrs = stdenv.lib.optionalAttrs (stdenv.cross.libc == "libSystem") {
|
|
propagatedBuildInputs = [];
|
|
passthru = {};
|
|
};
|
|
|
|
configureFlags = "--enable-static";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The official reference implementation for the PNG file format";
|
|
homepage = http://www.libpng.org/pub/png/libpng.html;
|
|
license = licenses.libpng;
|
|
maintainers = [ maintainers.fuuzetsu ];
|
|
branch = "1.2";
|
|
};
|
|
}
|