summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5.4/kscreen.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/plasma-5.4/kscreen.nix')
-rw-r--r--pkgs/desktops/plasma-5.4/kscreen.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/desktops/plasma-5.4/kscreen.nix b/pkgs/desktops/plasma-5.4/kscreen.nix
new file mode 100644
index 000000000000..caf84e96a0a9
--- /dev/null
+++ b/pkgs/desktops/plasma-5.4/kscreen.nix
@@ -0,0 +1,33 @@
+{ mkDerivation
+, extra-cmake-modules
+, kconfig
+, kconfigwidgets
+, kdbusaddons
+, kglobalaccel
+, ki18n
+, kwidgetsaddons
+, kxmlgui
+, libkscreen
+, qtdeclarative
+}:
+
+mkDerivation {
+  name = "kscreen";
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    kconfig
+    kconfigwidgets
+    kdbusaddons
+    kglobalaccel
+    ki18n
+    kwidgetsaddons
+    kxmlgui
+    libkscreen
+    qtdeclarative
+  ];
+  postInstall = ''
+    wrapKDEProgram "$out/bin/kscreen-console"
+  '';
+}