* Added lcms, a color management system.

svn path=/nixpkgs/trunk/; revision=2378
This commit is contained in:
Eelco Dolstra 2005-03-11 11:02:31 +00:00
parent 83f69ce406
commit 3ae70fc768
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "lcms-1.14";
src = fetchurl {
url = http://www.littlecms.com/lcms-1.14.tar.gz;
md5 = "5a803460aeb10e762d97e11a37462a69";
};
}

View file

@ -618,6 +618,10 @@ rec {
inherit fetchurl stdenv;
};
lcms = (import ../development/libraries/lcms) {
inherit fetchurl stdenv;
};
popt = (import ../development/libraries/popt) {
inherit fetchurl stdenv gettext;
};
@ -1138,7 +1142,7 @@ rec {
/*
fspot = (import ../applications/graphics/f-spot) {
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
libexif libjpeg sqlite;
libexif libjpeg sqlite lcms;
inherit (gnome) libgnome libgnomeui;
gtksharp = gtksharp1;
};