mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
* 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;
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue