core/pkgs/by-name/li/libpng/12.nix

51 lines
1,005 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchurl,
zlib,
testers,
2024-05-02 00:46:19 +00:00
}:
assert stdenv.hostPlatform == stdenv.buildPlatform -> zlib != null;
stdenv.mkDerivation (finalAttrs: {
pname = "libpng";
version = "1.2.59";
src = fetchurl {
url = "mirror://sourceforge/libpng/libpng-${finalAttrs.version}.tar.xz";
sha256 = "1izw9ybm27llk8531w6h4jp4rk2rxy2s9vil16nwik5dp0amyqxl";
};
2024-06-30 08:16:52 +00:00
outputs = [
"out"
"dev"
"man"
];
2024-05-02 00:46:19 +00:00
propagatedBuildInputs = [ zlib ];
configureFlags = [ "--enable-static" ];
postInstall = ''mv "$out/bin" "$dev/bin"'';
passthru = {
inherit zlib;
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
};
meta = with lib; {
description = "The official reference implementation for the PNG file format";
homepage = "http://www.libpng.org/pub/png/libpng.html";
license = licenses.libpng;
maintainers = [ ];
branch = "1.2";
2024-06-30 08:16:52 +00:00
pkgConfigModules = [
"libpng"
"libpng12"
];
2024-05-02 00:46:19 +00:00
platforms = platforms.unix;
};
})