summary refs log tree commit diff
path: root/pkgs/applications/kde/konsole.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2019-09-23 10:06:43 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2019-09-25 13:06:30 -0500
commit4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3 (patch)
tree28cdb269ac855d272d81796b500cf33fabc7f846 /pkgs/applications/kde/konsole.nix
parentfe5a295a229c791f079f5d83f4d59c409a0e5b90 (diff)
downloadnixpkgs-4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3.tar
nixpkgs-4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3.tar.gz
nixpkgs-4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3.tar.bz2
nixpkgs-4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3.tar.lz
nixpkgs-4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3.tar.xz
nixpkgs-4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3.tar.zst
nixpkgs-4edb8ade3d3bf1e4ef7d8284a6a8454a530c14d3.zip
konsole: Remove spurious wrapper
Diffstat (limited to 'pkgs/applications/kde/konsole.nix')
-rw-r--r--pkgs/applications/kde/konsole.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/applications/kde/konsole.nix b/pkgs/applications/kde/konsole.nix
index 004fc1c37ae..1be5b0b4a89 100644
--- a/pkgs/applications/kde/konsole.nix
+++ b/pkgs/applications/kde/konsole.nix
@@ -1,5 +1,5 @@
 {
-  mkDerivation, lib, makeWrapper,
+  mkDerivation, lib,
   extra-cmake-modules, kdoctools,
   kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kguiaddons,
   ki18n, kiconthemes, kinit, kdelibs4support, kio, knotifications,
@@ -18,12 +18,7 @@ mkDerivation {
     kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons kdelibs4support
     kguiaddons ki18n kiconthemes kinit kio knotifications knotifyconfig kparts kpty
     kservice ktextwidgets kwidgetsaddons kwindowsystem kxmlgui qtscript knewstuff
-    makeWrapper
   ];
 
-  postInstall = ''
-    wrapProgram $out/bin/konsole --prefix XDG_DATA_DIRS ":" $out/share
-  '';
-
   propagatedUserEnvPkgs = [ (lib.getBin kinit) ];
 }