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

42 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, apngSupport ? true }:
assert zlib != null;
let
2016-11-17 13:53:16 +03:00
version = "1.6.26";
sha256 = "1ybkgcqqsd4iiiyv60pxjfi1csszb50bd2cxxsy3sv4q4sil6rr6";
patch_src = fetchurl {
2013-12-24 13:49:56 +04:00
url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz";
2016-11-17 13:53:16 +03:00
sha256 = "0b6p2k4afvhk1svargpllcvhxb4g3p857wkqk85cks0yv42ckph1";
};
whenPatched = stdenv.lib.optionalString apngSupport;
2013-08-23 11:54:38 +04:00
in stdenv.mkDerivation rec {
name = "libpng" + whenPatched "-apng" + "-${version}";
src = fetchurl {
url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz";
inherit sha256;
};
2014-08-27 03:14:09 +04:00
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
outputs = [ "out" "dev" "man" ];
2016-07-09 16:42:42 +03:00
outputBin = "dev";
2013-08-23 11:54:38 +04:00
propagatedBuildInputs = [ zlib ];
# it's hard to cross-run tests and some check programs didn't compile anyway
makeFlags = stdenv.lib.optional (!doCheck) "check_PROGRAMS=";
doCheck = ! stdenv ? cross;
passthru = { inherit zlib; };
meta = with stdenv.lib; {
description = "The official reference implementation for the PNG file format" + whenPatched " with animation patch";
homepage = http://www.libpng.org/pub/png/libpng.html;
2014-09-21 21:53:20 +04:00
license = licenses.libpng;
platforms = platforms.all;
2014-09-21 21:53:20 +04:00
maintainers = [ maintainers.vcunat maintainers.fuuzetsu ];
};
}