lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 21 lines 514 B view raw
1{ stdenv, fetchurl, libtiff, libjpeg, zlib }: 2 3stdenv.mkDerivation rec { 4 name = "lcms2-2.9"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/lcms/${name}.tar.gz"; 8 sha256 = "083xisy6z01zhm7p7rgk4bx9d6zlr8l20qkfv1g29ylnhgwzvij8"; 9 }; 10 11 outputs = [ "bin" "dev" "out" ]; 12 13 propagatedBuildInputs = [ libtiff libjpeg zlib ]; 14 15 meta = with stdenv.lib; { 16 description = "Color management engine"; 17 homepage = http://www.littlecms.com/; 18 license = licenses.mit; 19 platforms = platforms.all; 20 }; 21}