about summary refs log tree commit diff
path: root/pkgs/applications/kde/colord-kde.nix
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2022-12-12 14:30:49 +0100
committerPeter Hoeg <peter@hoeg.com>2022-12-14 10:09:55 +0800
commit1bd7a3fb1c9956d300b48ee327d785afc3ea608c (patch)
treebb56b18456710b68080b58fa61bc88780e3c0ebe /pkgs/applications/kde/colord-kde.nix
parentca7d9064032744ab6febc605ea2ee052e0df025b (diff)
colord-kde: move to kde gear packages
Diffstat (limited to 'pkgs/applications/kde/colord-kde.nix')
-rw-r--r--pkgs/applications/kde/colord-kde.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/kde/colord-kde.nix b/pkgs/applications/kde/colord-kde.nix
new file mode 100644
index 0000000000000..e250df5633f70
--- /dev/null
+++ b/pkgs/applications/kde/colord-kde.nix
@@ -0,0 +1,24 @@
+{ mkDerivation, lib, fetchurl
+, extra-cmake-modules, ki18n
+, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kiconthemes, kcmutils
+, kio, knotifications, plasma-framework, kwidgetsaddons, kwindowsystem
+, kitemviews, lcms2, libXrandr, qtx11extras
+}:
+
+mkDerivation rec {
+  pname = "colord-kde";
+
+  nativeBuildInputs = [ extra-cmake-modules ];
+
+  buildInputs = [
+    kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes
+    kcmutils ki18n kio knotifications plasma-framework kwidgetsaddons
+    kwindowsystem kitemviews lcms2 libXrandr qtx11extras
+  ];
+
+  meta = with lib; {
+    homepage = "https://projects.kde.org/projects/playground/graphics/colord-kde";
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ ttuegel ];
+  };
+}