d994dabace
We do not use a "plugin system" for Git addons anymore, and therefore this directory is no longer useful. Indeed that directory is way more confusing, given that it includes more than mere Git addons, going from Bitbucket server command-line tools to complete rewrites of Git in exotic programming languages. Also, without this directory, the mental load of decision-making reduces a lot. When anyone is interested in including a new git-related tool, just put it into pkgs/applications/version-management, without apologies.
36 lines
996 B
Nix
36 lines
996 B
Nix
{ lib, stdenv, fetchFromGitHub, docutils, makeWrapper
|
|
, gnupg, curl, rsync, coreutils
|
|
, gawk, gnused, gnugrep
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-remote-gcrypt";
|
|
version = "1.5";
|
|
rev = version;
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "spwhitton";
|
|
repo = "git-remote-gcrypt";
|
|
sha256 = "sha256-uy6s3YQwY/aZmQoW/qe1YrSlfNHyDTXBFxB6fPGiPNQ=";
|
|
};
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ docutils makeWrapper ];
|
|
|
|
installPhase = ''
|
|
prefix="$out" ./install.sh
|
|
wrapProgram "$out/bin/git-remote-gcrypt" \
|
|
--prefix PATH ":" "${lib.makeBinPath [ gnupg curl rsync coreutils
|
|
gawk gnused gnugrep ]}"
|
|
'';
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|