41 lines
775 B
Nix
41 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;
|
|
};
|
|
}
|