1 { lib, stdenv, fetchurl, libtiff, libjpeg, zlib }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/lcms/${pname}-${version}.tar.gz";
9 hash = "sha256-2HPTSti5tM6gEGMfGmIo0gh0deTcXnY+uBrMI9nUWlE=";
12 outputs = [ "bin" "dev" "out" ];
14 propagatedBuildInputs = [ libtiff libjpeg zlib ];
16 # See https://trac.macports.org/ticket/60656
17 LDFLAGS = if stdenv.hostPlatform.isDarwin then "-Wl,-w" else null;
20 description = "Color management engine";
21 homepage = "http://www.littlecms.com/";
22 license = licenses.mit;
23 platforms = platforms.all;