about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-08-04 09:45:54 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-08-04 09:45:54 -0500
commit29c3fea7b0c05cdc12d845799c4dae203471c7f4 (patch)
tree8e1dde261cfa917ae98bb8dcecb54c6de518c3c4 /pkgs/desktops/kde-5
parent81179317523a50b924ee1aed77e4ad189336b2e2 (diff)
downloadnixlib-29c3fea7b0c05cdc12d845799c4dae203471c7f4.tar
nixlib-29c3fea7b0c05cdc12d845799c4dae203471c7f4.tar.gz
nixlib-29c3fea7b0c05cdc12d845799c4dae203471c7f4.tar.bz2
nixlib-29c3fea7b0c05cdc12d845799c4dae203471c7f4.tar.lz
nixlib-29c3fea7b0c05cdc12d845799c4dae203471c7f4.tar.xz
nixlib-29c3fea7b0c05cdc12d845799c4dae203471c7f4.tar.zst
nixlib-29c3fea7b0c05cdc12d845799c4dae203471c7f4.zip
kde5.breeze-qt5: add kwayland input
Diffstat (limited to 'pkgs/desktops/kde-5')
-rw-r--r--pkgs/desktops/kde-5/plasma/breeze-qt5.nix20
1 files changed, 8 insertions, 12 deletions
diff --git a/pkgs/desktops/kde-5/plasma/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma/breeze-qt5.nix
index a909e5067f42..ea2776a13c59 100644
--- a/pkgs/desktops/kde-5/plasma/breeze-qt5.nix
+++ b/pkgs/desktops/kde-5/plasma/breeze-qt5.nix
@@ -1,21 +1,17 @@
-{ plasmaPackage, ecm, frameworkintegration
-, kcmutils, kconfigwidgets, kcoreaddons, kdecoration, kguiaddons
-, ki18n, kwindowsystem, makeQtWrapper, plasma-framework, qtx11extras
+{
+  plasmaPackage,
+  ecm,
+  frameworkintegration, kcmutils, kconfigwidgets, kcoreaddons, kdecoration,
+  kguiaddons, ki18n, kwayland, kwindowsystem, plasma-framework, qtx11extras
 }:
 
 plasmaPackage {
   name = "breeze-qt5";
   sname = "breeze";
-  nativeBuildInputs = [
-    ecm
-    makeQtWrapper
-  ];
+  nativeBuildInputs = [ ecm ];
   propagatedBuildInputs = [
-    frameworkintegration ki18n kwindowsystem plasma-framework qtx11extras
-    kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons
+    frameworkintegration kcmutils kconfigwidgets kcoreaddons kdecoration
+    kguiaddons ki18n kwayland kwindowsystem plasma-framework qtx11extras
   ];
   cmakeFlags = [ "-DUSE_Qt4=OFF" ];
-  postInstall = ''
-    wrapQtProgram "$out/bin/breeze-settings5"
-  '';
 }