summary refs log tree commit diff
path: root/pkgs/applications/kde/kate.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-17 14:26:11 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-06-18 08:44:42 -0500
commitc816bbc8a86c7ea6c09ca42e1694fe08003a55fc (patch)
tree036a3c0d8a3a6a4be068cf153a863fc0114ef28f /pkgs/applications/kde/kate.nix
parent1607f51613fc63a6fbfc1884c55a9efea06161b3 (diff)
downloadnixpkgs-c816bbc8a86c7ea6c09ca42e1694fe08003a55fc.tar
nixpkgs-c816bbc8a86c7ea6c09ca42e1694fe08003a55fc.tar.gz
nixpkgs-c816bbc8a86c7ea6c09ca42e1694fe08003a55fc.tar.bz2
nixpkgs-c816bbc8a86c7ea6c09ca42e1694fe08003a55fc.tar.lz
nixpkgs-c816bbc8a86c7ea6c09ca42e1694fe08003a55fc.tar.xz
nixpkgs-c816bbc8a86c7ea6c09ca42e1694fe08003a55fc.tar.zst
nixpkgs-c816bbc8a86c7ea6c09ca42e1694fe08003a55fc.zip
qt5: remove makeQtWrapper
Diffstat (limited to 'pkgs/applications/kde/kate.nix')
-rw-r--r--pkgs/applications/kde/kate.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/kde/kate.nix b/pkgs/applications/kde/kate.nix
index 357abf96505..e6b4f6b6bdd 100644
--- a/pkgs/applications/kde/kate.nix
+++ b/pkgs/applications/kde/kate.nix
@@ -1,6 +1,6 @@
 {
   mkDerivation, lib,
-  extra-cmake-modules, kdoctools, wrapGAppsHook,
+  extra-cmake-modules, kdoctools,
   kactivities, kconfig, kcrash, kdbusaddons, kguiaddons, kiconthemes, ki18n,
   kinit, kio, kitemmodels, kjobwidgets, knewstuff, knotifications, konsole,
   kparts, ktexteditor, kwindowsystem, kwallet, kxmlgui, libgit2,
@@ -13,12 +13,13 @@ mkDerivation {
     license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
     maintainers = [ lib.maintainers.ttuegel ];
   };
-  nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [ libgit2 ];
   propagatedBuildInputs = [
     kactivities ki18n kio ktexteditor kwindowsystem plasma-framework
     qtscript kconfig kcrash kguiaddons kiconthemes kinit kjobwidgets kparts
     kxmlgui kdbusaddons kwallet kitemmodels knotifications threadweaver
-    knewstuff libgit2
+    knewstuff
   ];
   propagatedUserEnvPkgs = [ konsole ];
 }