From a0b811a08ccf8deb51e35e73b79a861217ccbeee Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 24 Jan 2015 10:24:55 -0600 Subject: [PATCH] kdeApps_14_12.ark: wrap PATH for unzip --- pkgs/applications/kde-apps-14.12/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/applications/kde-apps-14.12/default.nix b/pkgs/applications/kde-apps-14.12/default.nix index 13324196e49d..7d60f6675fad 100644 --- a/pkgs/applications/kde-apps-14.12/default.nix +++ b/pkgs/applications/kde-apps-14.12/default.nix @@ -101,6 +101,13 @@ let postResolve = super: super // { + ark = with pkgs; super.ark // { + buildInputs = (super.ark.buildInputs or []) ++ [ makeWrapper ]; + postInstall = '' + wrapProgram $out/bin/ark --prefix PATH : "${unzipNLS}/bin" + ''; + }; + ffmpegthumbs = with pkgs; super.ffmpegthumbs // { nativeBuildInputs = super.ffmpegthumbs.nativeBuildInputs ++ [pkgconfig]; };