summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications/spectacle.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-10-18 06:45:40 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-10-18 06:45:40 -0500
commit7f4ad13ef62d2fe826eaad33bdea24890f0b7442 (patch)
tree93b20b7b5a4e386004f00889be42ac30456a3fcc /pkgs/desktops/kde-5/applications/spectacle.nix
parente62ab65fe6d647fbf6923ec46464fb0f0da47a8f (diff)
downloadnixpkgs-7f4ad13ef62d2fe826eaad33bdea24890f0b7442.tar
nixpkgs-7f4ad13ef62d2fe826eaad33bdea24890f0b7442.tar.gz
nixpkgs-7f4ad13ef62d2fe826eaad33bdea24890f0b7442.tar.bz2
nixpkgs-7f4ad13ef62d2fe826eaad33bdea24890f0b7442.tar.lz
nixpkgs-7f4ad13ef62d2fe826eaad33bdea24890f0b7442.tar.xz
nixpkgs-7f4ad13ef62d2fe826eaad33bdea24890f0b7442.tar.zst
nixpkgs-7f4ad13ef62d2fe826eaad33bdea24890f0b7442.zip
kde5.spectacle: include kipi-plugins
Diffstat (limited to 'pkgs/desktops/kde-5/applications/spectacle.nix')
-rw-r--r--pkgs/desktops/kde-5/applications/spectacle.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/desktops/kde-5/applications/spectacle.nix b/pkgs/desktops/kde-5/applications/spectacle.nix
index 26faea2678a..aa618ffcde1 100644
--- a/pkgs/desktops/kde-5/applications/spectacle.nix
+++ b/pkgs/desktops/kde-5/applications/spectacle.nix
@@ -1,8 +1,9 @@
 {
   kdeApp, lib, kdeWrapper,
   ecm, kdoctools,
-  kconfig, kcoreaddons, kdbusaddons, kdeclarative, ki18n, kio, knotifications,
-  kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi, xcb-util-cursor
+  kconfig, kcoreaddons, kdbusaddons, kdeclarative, ki18n, kio, kipi-plugins,
+  knotifications, kscreen, kwidgetsaddons, kwindowsystem, kxmlgui, libkipi,
+  xcb-util-cursor
 }:
 
 let
@@ -17,4 +18,7 @@ let
       ];
     };
 in
-kdeWrapper unwrapped { targets = [ "bin/spectacle" ]; }
+kdeWrapper unwrapped {
+  targets = [ "bin/spectacle" ];
+  paths = [ kipi-plugins ];
+}