summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks/kdeclarative.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-07-15 09:59:21 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-07-16 10:14:47 -0500
commit512212db36b3a3afec6ae38081028e51927ad3bc (patch)
tree69ea4df63be9c91ca2d1aabf743ab8cec99db735 /pkgs/desktops/kde-5/frameworks/kdeclarative.nix
parent888c66f97d592ebb2579527da722843a5e99a5b8 (diff)
downloadnixpkgs-512212db36b3a3afec6ae38081028e51927ad3bc.tar
nixpkgs-512212db36b3a3afec6ae38081028e51927ad3bc.tar.gz
nixpkgs-512212db36b3a3afec6ae38081028e51927ad3bc.tar.bz2
nixpkgs-512212db36b3a3afec6ae38081028e51927ad3bc.tar.lz
nixpkgs-512212db36b3a3afec6ae38081028e51927ad3bc.tar.xz
nixpkgs-512212db36b3a3afec6ae38081028e51927ad3bc.tar.zst
nixpkgs-512212db36b3a3afec6ae38081028e51927ad3bc.zip
kde5.frameworks: unwrap all frameworks
Diffstat (limited to 'pkgs/desktops/kde-5/frameworks/kdeclarative.nix')
-rw-r--r--pkgs/desktops/kde-5/frameworks/kdeclarative.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/desktops/kde-5/frameworks/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix
index af9a009b82e..8db1b73c91a 100644
--- a/pkgs/desktops/kde-5/frameworks/kdeclarative.nix
+++ b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix
@@ -1,18 +1,15 @@
 { kdeFramework, lib, extra-cmake-modules, epoxy, kconfig
 , kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage
-, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig
+, kwidgetsaddons, kwindowsystem, pkgconfig
 , qtdeclarative
 }:
 
 kdeFramework {
   name = "kdeclarative";
   meta = { maintainers = [ lib.maintainers.ttuegel ]; };
-  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+  nativeBuildInputs = [ extra-cmake-modules ];
   propagatedBuildInputs = [
     epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage
     kwidgetsaddons kwindowsystem qtdeclarative
   ];
-  postInstall = ''
-    wrapQtProgram "$out/bin/kpackagelauncherqml"
-  '';
 }