From 19ebf93df322a9be23eaedcee55895358fc71ba4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 27 Oct 2015 13:12:27 -0500 Subject: [PATCH] konsole: wrap with Qt path --- pkgs/applications/kde-apps-15.08/konsole.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/kde-apps-15.08/konsole.nix b/pkgs/applications/kde-apps-15.08/konsole.nix index ce98c17443fc..4b4cba2a3779 100644 --- a/pkgs/applications/kde-apps-15.08/konsole.nix +++ b/pkgs/applications/kde-apps-15.08/konsole.nix @@ -2,6 +2,7 @@ , lib , extra-cmake-modules , kdoctools +, makeQtWrapper , qtscript , kbookmarks , kcompletion @@ -30,6 +31,7 @@ kdeApp { nativeBuildInputs = [ extra-cmake-modules kdoctools + makeQtWrapper ]; buildInputs = [ qtscript @@ -56,6 +58,9 @@ kdeApp { ki18n kwindowsystem ]; + postInstall = '' + wrapQtProgram "$out/bin/konsole" + ''; meta = { license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; maintainers = [ lib.maintainers.ttuegel ];