* Added lcms, a color management system.
svn path=/nixpkgs/trunk/; revision=2378
This commit is contained in:
parent
83f69ce406
commit
3ae70fc768
10
pkgs/development/libraries/lcms/default.nix
Normal file
10
pkgs/development/libraries/lcms/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -618,6 +618,10 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lcms = (import ../development/libraries/lcms) {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
popt = (import ../development/libraries/popt) {
|
popt = (import ../development/libraries/popt) {
|
||||||
inherit fetchurl stdenv gettext;
|
inherit fetchurl stdenv gettext;
|
||||||
};
|
};
|
||||||
@ -1138,7 +1142,7 @@ rec {
|
|||||||
/*
|
/*
|
||||||
fspot = (import ../applications/graphics/f-spot) {
|
fspot = (import ../applications/graphics/f-spot) {
|
||||||
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
|
||||||
libexif libjpeg sqlite;
|
libexif libjpeg sqlite lcms;
|
||||||
inherit (gnome) libgnome libgnomeui;
|
inherit (gnome) libgnome libgnomeui;
|
||||||
gtksharp = gtksharp1;
|
gtksharp = gtksharp1;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user