summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/spectacle.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/kde-5/applications-16.04/spectacle.nix')
-rw-r--r--pkgs/desktops/kde-5/applications-16.04/spectacle.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix b/pkgs/desktops/kde-5/applications-16.04/spectacle.nix
new file mode 100644
index 00000000000..7e324f2b3fc
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications-16.04/spectacle.nix
@@ -0,0 +1,35 @@
+{ kdeApp, lib
+, extra-cmake-modules
+, kdoctools
+, makeQtWrapper
+, kconfig
+, kcoreaddons
+, kdbusaddons
+, kdeclarative
+, ki18n
+, kio
+, knotifications
+, kscreen
+, kwidgetsaddons
+, kwindowsystem
+, kxmlgui
+, libkipi
+, xcb-util-cursor
+}:
+
+kdeApp {
+  name = "spectacle";
+  meta = with lib; {
+    maintainers = with maintainers; [ ttuegel ];
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules kdoctools makeQtWrapper
+  ];
+  propagatedBuildInputs = [
+    kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications
+    kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor
+  ];
+  postFixup = ''
+    wrapQtProgram "$out/bin/spectacle"
+  '';
+}