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

42 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, apngSupport ? false }:
assert zlib != null;
let
2014-06-15 19:08:49 +02:00
version = "1.6.12";
sha256 = "0pkcirbfzhqqsm3hr2alxprw5n22a836qk4df1jnns6jk79gcby3";
patch_src = fetchurl {
2013-12-24 10:49:56 +01:00
url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz";
2014-06-15 19:08:49 +02:00
sha256 = "0r2vmsc4cvxisjr7jqw2vjf66isb2fhs4nnssz3l3jgdangj8wz0";
};
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;
};
2013-08-23 09:54:38 +02:00
outputs = [ "dev" "out" "man" ];
preConfigure = "export bin=$dev";
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
2013-08-23 09:54:38 +02:00
propagatedBuildInputs = [ zlib ];
doCheck = true;
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;
license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
platforms = platforms.all;
maintainers = [ maintainers.vcunat ];
};
}