mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
Add colord-kde.
A KDE front-end for colord.
This commit is contained in:
parent
0741150b97
commit
fd5084bc8f
19
pkgs/tools/misc/colord-kde/default.nix
Normal file
19
pkgs/tools/misc/colord-kde/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -10620,6 +10620,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
|
||||
|
|
Loading…
Reference in a new issue