nixpkgs/pkgs/applications/version-management/git-and-tools/git-remote-gcrypt/default.nix
talyz 3f1fdb8bf5 gitAndTools.gitRemoteGcrypt: Add missing dependencies (#57637)
Add the runtime dependencies coreutils, gawk, gnused and gnugrep.
2019-03-14 22:16:40 +01:00

36 lines
1 KiB
Nix

{ stdenv, fetchFromGitHub, docutils, makeWrapper
, gnupg1compat, curl, rsync, coreutils
, gawk, gnused, gnugrep
}:
stdenv.mkDerivation rec {
name = "git-remote-gcrypt-${version}";
version = "1.2";
rev = version;
src = fetchFromGitHub {
inherit rev;
owner = "spwhitton";
repo = "git-remote-gcrypt";
sha256 = "0isfg0vlmcphxzj4jm32dycprhym26ina1b28jgc4j57kiqqrdcy";
};
outputs = [ "out" "man" ];
nativeBuildInputs = [ docutils makeWrapper ];
installPhase = ''
prefix="$out" ./install.sh
wrapProgram "$out/bin/git-remote-gcrypt" \
--prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg1compat curl rsync coreutils
gawk gnused gnugrep ]}"
'';
meta = with stdenv.lib; {
homepage = https://spwhitton.name/tech/code/git-remote-gcrypt;
description = "A git remote helper for GPG-encrypted remotes";
license = licenses.gpl3;
maintainers = with maintainers; [ ellis montag451 ];
platforms = platforms.unix;
};
}