Skip to content

Commit

Permalink
gitAndTools.gitRemoteGcrypt: Add missing dependencies (#57637)
Browse files Browse the repository at this point in the history
Add the runtime dependencies coreutils, gawk, gnused and gnugrep.
  • Loading branch information
talyz authored and xeji committed Mar 14, 2019
1 parent fb81978 commit 3f1fdb8
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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 {
name = "git-remote-gcrypt-${version}";
Expand All @@ -19,7 +22,8 @@ stdenv.mkDerivation rec {
installPhase = ''
prefix="$out" ./install.sh
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; {
Expand Down

0 comments on commit 3f1fdb8

Please sign in to comment.