summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/kde-5/plasma-5.6/kscreen.nix')
-rw-r--r--pkgs/desktops/kde-5/plasma-5.6/kscreen.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix b/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix
new file mode 100644
index 00000000000..117a39c3be3
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix
@@ -0,0 +1,19 @@
+{ plasmaPackage, extra-cmake-modules, kconfig, kconfigwidgets
+, kdbusaddons, kglobalaccel, ki18n, kwidgetsaddons, kxmlgui
+, libkscreen, makeQtWrapper, qtdeclarative, qtgraphicaleffects
+}:
+
+plasmaPackage {
+  name = "kscreen";
+  nativeBuildInputs = [
+    extra-cmake-modules
+    makeQtWrapper
+  ];
+  propagatedBuildInputs = [
+    kglobalaccel ki18n libkscreen qtdeclarative qtgraphicaleffects kconfig
+    kconfigwidgets kdbusaddons kwidgetsaddons kxmlgui
+  ];
+  postInstall = ''
+    wrapQtProgram "$out/bin/kscreen-console"
+  '';
+}