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

44 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, apngSupport ? false }:
assert zlib != null;
let
2014-06-15 21:08:49 +04:00
version = "1.6.12";
sha256 = "0pkcirbfzhqqsm3hr2alxprw5n22a836qk4df1jnns6jk79gcby3";
patch_src = fetchurl {
2013-12-24 13:49:56 +04:00
url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz";
2014-06-15 21:08:49 +04:00
sha256 = "0r2vmsc4cvxisjr7jqw2vjf66isb2fhs4nnssz3l3jgdangj8wz0";
};
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";
2013-08-23 11:54:38 +04:00
outputs = [ "dev" "out" "man" ];
2014-08-27 03:14:09 +04:00
buildInputs = [ stdenv.hookLib.multiout ];
2013-08-23 11:54:38 +04:00
propagatedBuildInputs = [ zlib ];
2014-08-27 03:14:09 +04:00
preConfigure = "export bin=$dev";
doCheck = true;
2014-08-27 03:14:09 +04:00
postInstall = ''mv "$out/bin" "$dev/bin"'';
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 ];
};
}