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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.5 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchurl,
zlib,
apngSupport ? true,
testers,
}:
assert zlib != null;
let
patchVersion = "1.6.43";
patch_src = fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${patchVersion}-apng.patch.gz";
hash = "sha256-0QdXnpDVU4bQDmCG6nUJQvIqBLmrR2u6DGYHcM76/iI=";
};
whenPatched = lib.optionalString apngSupport;
in
stdenv.mkDerivation (finalAttrs: {
pname = "libpng" + whenPatched "-apng";
version = "1.6.43";
src = fetchurl {
url = "mirror://sourceforge/libpng/libpng-${finalAttrs.version}.tar.xz";
hash = "sha256-alygZSOSotfJ2yrltAIQhDwLvAgcvUEIJasAzFnxSmw=";
};
postPatch =
whenPatched "gunzip < ${patch_src} | patch -Np1"
+ lib.optionalString stdenv.hostPlatform.isFreeBSD ''
sed -i 1i'int feenableexcept(int __mask);' contrib/libtests/pngvalid.c
'';
outputs = [
"out"
"dev"
"man"
];
2016-07-09 13:42:42 +00:00
outputBin = "dev";
2013-08-23 07:54:38 +00:00
propagatedBuildInputs = [ zlib ];
2018-12-03 12:18:31 +00:00
doCheck = true;
passthru = {
inherit zlib;
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
};
meta = with lib; {
description =
"Official reference implementation for the PNG file format" + whenPatched " with animation patch";
homepage = "http://www.libpng.org/pub/png/libpng.html";
changelog = "https://github.com/pnggroup/libpng/blob/v${finalAttrs.version}/CHANGES";
2018-12-03 12:18:31 +00:00
license = licenses.libpng2;
pkgConfigModules = [
"libpng"
"libpng16"
];
platforms = platforms.all;
2022-12-29 22:48:40 +00:00
maintainers = with maintainers; [ vcunat ];
};
})