Skip to content

Commit

Permalink
Merge pull request #30714 from phunehehe/git-crypt-path
Browse files Browse the repository at this point in the history
git-crypt: add runtime dependencies to PATH
  • Loading branch information
grahamc committed Oct 23, 2017
2 parents f4801e5 + acbe3a8 commit 346dcfd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, openssl, gnupg1compat, makeWrapper }:
{ fetchFromGitHub, git, gnupg1compat, makeWrapper, openssl, stdenv }:

stdenv.mkDerivation rec {

Expand All @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {

installPhase = ''
make install PREFIX=$out
wrapProgram $out/bin/* --prefix PATH : ${gnupg1compat}/bin
wrapProgram $out/bin/* --prefix PATH : $out/bin:${git}/bin:${gnupg1compat}/bin
'';

meta = with stdenv.lib; {
Expand Down

0 comments on commit 346dcfd

Please sign in to comment.