Merge pull request #3693 from ruediger/add/colord-kde

Add colord-kde.
This commit is contained in:
Peter Simons 2014-08-20 19:59:15 +02:00
commit 17d3aee3eb
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl, cmake, colord, libX11, libXrandr, lcms2, pkgconfig, kdelibs}:
stdenv.mkDerivation {
name = "colord-kde-0.3.0";
src = fetchurl {
url = http://download.kde.org/stable/colord-kde/0.3.0/src/colord-kde-0.3.0.tar.bz2;
sha256 = "ab3cdb7c8c98aa2ee8de32a92f87770e1fbd58eade6471f3f24d932b50b4cf09";
};
buildInputs = [ cmake colord libX11 libXrandr lcms2 pkgconfig kdelibs ];
enableParallelBuilding = true;
meta = {
description = "A colord front-end for KDE";
license = stdenv.lib.licenses.gpl2Plus;
};
}

View file

@ -10625,6 +10625,8 @@ let
calligra = callPackage ../applications/office/calligra { };
colord-kde = callPackage ../tools/misc/colord-kde { };
digikam = if builtins.compareVersions "4.9" kde4.release == 1 then
callPackage ../applications/graphics/digikam/2.nix { }
else