mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
git-crypt needs GnuPG
This commit is contained in:
parent
98151e0691
commit
85375fc5fc
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user