From d7749f27f3df976be82eef36f2dbc4b13de5ad9d Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Wed, 25 May 2016 10:53:35 +0200 Subject: [PATCH] bup: add ${git} to the $PATH of the wrapper Otherwise, bup tries to run git from the user's PATH, which may or may not exist. Closes #15691 --- pkgs/tools/backup/bup/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/backup/bup/default.nix b/pkgs/tools/backup/bup/default.nix index b4efe9fb441..af5116eaa72 100644 --- a/pkgs/tools/backup/bup/default.nix +++ b/pkgs/tools/backup/bup/default.nix @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { "LIBDIR=$(out)/lib/bup" ]; - postInstall = optionalString (elem stdenv.system platforms.linux) '' - wrapProgram $out/bin/bup --prefix PYTHONPATH : \ + postInstall = ''wrapProgram $out/bin/bup --prefix PATH : ${git}/bin '' + + optionalString (elem stdenv.system platforms.linux) '' --prefix PYTHONPATH : \ ${stdenv.lib.concatStringsSep ":" (map (path: "$(toPythonPath ${path})") [ pyxattr pylibacl setuptools fuse ])} '';