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

40 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, apngSupport ? true }:
assert zlib != null;
let
2017-10-08 10:41:29 +01:00
patchVersion = "1.6.34";
patch_src = fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${patchVersion}-apng.patch.gz";
2017-10-08 10:41:29 +01:00
sha256 = "1ha4npf9mfrzp0srg8a5amks5ww84xzfpjbsj8k3yjjpai798qg6";
};
whenPatched = stdenv.lib.optionalString apngSupport;
2013-08-23 08:54:38 +01:00
in stdenv.mkDerivation rec {
name = "libpng" + whenPatched "-apng" + "-${version}";
2018-08-08 20:17:47 +01:00
version = "1.6.34";
src = fetchurl {
url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz";
2018-08-08 20:17:47 +01:00
sha256 = "1xjr0v34fyjgnhvaa1zixcpx5yvxcg4zwvfh0fyklfyfj86rc7ig";
};
2014-08-27 00:14:09 +01:00
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
outputs = [ "out" "dev" "man" ];
2016-07-09 14:42:42 +01:00
outputBin = "dev";
2013-08-23 08:54:38 +01:00
propagatedBuildInputs = [ zlib ];
2018-08-08 20:17:47 +01:00
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
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 18:53:20 +01:00
license = licenses.libpng;
platforms = platforms.all;
2014-09-21 18:53:20 +01:00
maintainers = [ maintainers.vcunat maintainers.fuuzetsu ];
};
}