core/pkgs/by-name/lc/lcms2/default.nix

41 lines
698 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchurl,
libtiff,
libjpeg,
zlib,
}:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation rec {
pname = "lcms2";
version = "2.16";
src = fetchurl {
url = "mirror://sourceforge/lcms/${pname}-${version}.tar.gz";
hash = "sha256-2HPTSti5tM6gEGMfGmIo0gh0deTcXnY+uBrMI9nUWlE=";
};
2024-06-30 08:16:52 +00:00
outputs = [
"bin"
"dev"
"out"
];
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
propagatedBuildInputs = [
libtiff
libjpeg
zlib
];
2024-05-02 00:46:19 +00:00
# See https://trac.macports.org/ticket/60656
LDFLAGS = if stdenv.hostPlatform.isDarwin then "-Wl,-w" else null;
meta = with lib; {
description = "Color management engine";
homepage = "http://www.littlecms.com/";
license = licenses.mit;
platforms = platforms.all;
};
}