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-07-09 15:42:08 +02:00
version = "1.6.23";
sha256 = "1wb2j8sba6g2h4vmv4pwsp93q74qw4gyqqs4b7vfjmpcv9xix4kd";
patch_src = fetchurl {
2013-12-24 10:49:56 +01:00
url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz";
2016-07-09 15:42:08 +02:00
sha256 = "1lvsn1kmarzpn269zgykjfmxq16zrdhpd1a75nzgclx97436x408";
};
whenPatched = stdenv.lib.optionalString apngSupport;
2013-08-23 09:54:38 +02: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 01:14:09 +02:00
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
2013-08-23 09:54:38 +02:00
outputs = [ "dev" "out" "man" ];
2016-07-09 15:42:42 +02:00
outputBin = "dev";
2013-08-23 09:54:38 +02: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 19:53:20 +02:00
license = licenses.libpng;
platforms = platforms.all;
2014-09-21 19:53:20 +02:00
maintainers = [ maintainers.vcunat maintainers.fuuzetsu ];
};
}