From fc4468e40aba76de086672fe3c0f2f116162ffb8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 27 Oct 2015 12:10:37 -0500 Subject: [PATCH] dolphin: wrap with Qt paths --- pkgs/applications/kde-apps-15.08/dolphin.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/kde-apps-15.08/dolphin.nix b/pkgs/applications/kde-apps-15.08/dolphin.nix index 102108a057c..3218146f510 100644 --- a/pkgs/applications/kde-apps-15.08/dolphin.nix +++ b/pkgs/applications/kde-apps-15.08/dolphin.nix @@ -2,6 +2,7 @@ , lib , extra-cmake-modules , kdoctools +, makeQtWrapper , kinit , kcmutils , kcoreaddons @@ -31,6 +32,7 @@ kdeApp { nativeBuildInputs = [ extra-cmake-modules kdoctools + makeQtWrapper ]; buildInputs = [ kinit @@ -58,6 +60,9 @@ kdeApp { ktexteditor kwindowsystem ]; + postInstall = '' + wrapQtProgram "$out/bin/dolphin" + ''; meta = { license = with lib.licenses; [ gpl2 fdl12 ]; maintainers = [ lib.maintainers.ttuegel ];