Merge pull request #11774 from ip1981/ip1981/git-crypt

git-crypt needs GnuPG
This commit is contained in:
Peter Simons 2015-12-17 11:03:27 +01:00
commit 95dc945759

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, openssl }:
{ stdenv, fetchFromGitHub, openssl, gnupg1compat, makeWrapper }:
stdenv.mkDerivation rec {
@ -12,10 +12,11 @@ stdenv.mkDerivation rec {
inherit name;
};
buildInputs = [ openssl ];
buildInputs = [ openssl makeWrapper ];
installPhase = ''
make install PREFIX=$out
wrapProgram $out/bin/* --prefix PATH : ${gnupg1compat}/bin
'';
meta = with stdenv.lib; {