summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5.4/kscreen.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-09-27 10:03:00 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-09-27 15:08:11 -0500
commita482b9be4a2481333872cf2d2fcb042529d23def (patch)
tree7128e29fc5eeba72fc8c9093fb9720ad1499a4af /pkgs/desktops/plasma-5.4/kscreen.nix
parent32a5695f2cf02f4b561bf80e1d6210b241df5f9c (diff)
downloadnixlib-a482b9be4a2481333872cf2d2fcb042529d23def.tar
nixlib-a482b9be4a2481333872cf2d2fcb042529d23def.tar.gz
nixlib-a482b9be4a2481333872cf2d2fcb042529d23def.tar.bz2
nixlib-a482b9be4a2481333872cf2d2fcb042529d23def.tar.lz
nixlib-a482b9be4a2481333872cf2d2fcb042529d23def.tar.xz
nixlib-a482b9be4a2481333872cf2d2fcb042529d23def.tar.zst
nixlib-a482b9be4a2481333872cf2d2fcb042529d23def.zip
plasma54: init at 5.4.1
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"
+  '';
+}