Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
775 B
Nix
42 lines
775 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
zlib,
|
|
libpng,
|
|
libjpeg,
|
|
lcms2,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmng";
|
|
version = "2.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libmng/${pname}-${version}.tar.xz";
|
|
sha256 = "1lvxnpds0vcf0lil6ia2036ghqlbl740c4d2sz0q5g6l93fjyija";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"devdoc"
|
|
];
|
|
outputMan = "devdoc";
|
|
|
|
propagatedBuildInputs = [
|
|
zlib
|
|
libpng
|
|
libjpeg
|
|
lcms2
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Reference library for reading, displaying, writing and examining Multiple-Image Network Graphics";
|
|
homepage = "http://www.libmng.com";
|
|
license = licenses.zlib;
|
|
maintainers = with maintainers; [ marcweber ];
|
|
platforms = platforms.unix ++ platforms.windows;
|
|
};
|
|
}
|