gitAndTools.gitRemoteGcrypt: Add missing dependencies (#57637)
Add the runtime dependencies coreutils, gawk, gnused and gnugrep.
This commit is contained in:
parent
fb81978ed3
commit
3f1fdb8bf5
|
@ -1,4 +1,7 @@
|
||||||
{ stdenv, fetchFromGitHub, docutils, makeWrapper, gnupg1compat, curl, rsync }:
|
{ stdenv, fetchFromGitHub, docutils, makeWrapper
|
||||||
|
, gnupg1compat, curl, rsync, coreutils
|
||||||
|
, gawk, gnused, gnugrep
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "git-remote-gcrypt-${version}";
|
name = "git-remote-gcrypt-${version}";
|
||||||
|
@ -19,7 +22,8 @@ stdenv.mkDerivation rec {
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
prefix="$out" ./install.sh
|
prefix="$out" ./install.sh
|
||||||
wrapProgram "$out/bin/git-remote-gcrypt" \
|
wrapProgram "$out/bin/git-remote-gcrypt" \
|
||||||
--prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg1compat curl rsync ]}"
|
--prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg1compat curl rsync coreutils
|
||||||
|
gawk gnused gnugrep ]}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in New Issue