summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-04-28 10:51:08 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-04-30 12:20:20 -0500
commitbe1091d46cd94bfeda04ed64649d339ccc21b0c2 (patch)
tree1cc3f8b791a70664b9fae49b3664b58b17419a39 /pkgs/desktops
parentf60d19ba86be9ebc2e20051f7abfe14a54890d19 (diff)
downloadnixpkgs-be1091d46cd94bfeda04ed64649d339ccc21b0c2.tar
nixpkgs-be1091d46cd94bfeda04ed64649d339ccc21b0c2.tar.gz
nixpkgs-be1091d46cd94bfeda04ed64649d339ccc21b0c2.tar.bz2
nixpkgs-be1091d46cd94bfeda04ed64649d339ccc21b0c2.tar.lz
nixpkgs-be1091d46cd94bfeda04ed64649d339ccc21b0c2.tar.xz
nixpkgs-be1091d46cd94bfeda04ed64649d339ccc21b0c2.tar.zst
nixpkgs-be1091d46cd94bfeda04ed64649d339ccc21b0c2.zip
kde5.kdesignerplugin: propagate all buildInputs
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix
index cbc114ccca0..d6e03e17472 100644
--- a/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix
+++ b/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix
@@ -18,17 +18,13 @@
 
 kdeFramework {
   name = "kdesignerplugin";
+  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
   nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
-  buildInputs = [
-    kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit
-    kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons
-    kxmlgui
+  propagatedBuildInputs = [
+    kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit kiconthemes kio
+    kitemviews kplotting ktextwidgets kwidgetsaddons kxmlgui sonnet
   ];
-  propagatedBuildInputs = [ kio sonnet ];
   postInstall = ''
     wrapQtProgram "$out/bin/kgendesignerplugin"
   '';
-  meta = {
-    maintainers = [ lib.maintainers.ttuegel ];
-  };
 }