Merge pull request #30714 from phunehehe/git-crypt-path

git-crypt: add runtime dependencies to PATH

authored by Graham Christensen and committed by GitHub 346dcfdc f4801e59

+2 -2
+2 -2
pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
··· 1 - { stdenv, fetchFromGitHub, openssl, gnupg1compat, makeWrapper }: 1 + { fetchFromGitHub, git, gnupg1compat, makeWrapper, openssl, stdenv }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 ··· 21 21 22 22 installPhase = '' 23 23 make install PREFIX=$out 24 - wrapProgram $out/bin/* --prefix PATH : ${gnupg1compat}/bin 24 + wrapProgram $out/bin/* --prefix PATH : $out/bin:${git}/bin:${gnupg1compat}/bin 25 25 ''; 26 26 27 27 meta = with stdenv.lib; {