Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
66 lines
1.1 KiB
Nix
66 lines
1.1 KiB
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 = "Git remote helper for GPG-encrypted remotes";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [
|
|
ellis
|
|
montag451
|
|
];
|
|
platforms = platforms.unix;
|
|
mainProgram = "git-remote-gcrypt";
|
|
};
|
|
}
|