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
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gitMinimal,
|
|
docutils,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-hub";
|
|
version = "2.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sociomantic-tsunami";
|
|
repo = "git-hub";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-fb/WDmBx1Vayu4fLeG+D1nmHJJawgIAAXcQsABsenBo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gitMinimal # Used during build to generate Bash completion.
|
|
docutils
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
installFlags = [
|
|
"prefix=$(out)"
|
|
"sysconfdir=$(out)/etc"
|
|
];
|
|
|
|
postInstall = ''
|
|
# Remove inert ftdetect vim plugin and a README that's a man page subset:
|
|
rm -r $out/share/{doc,vim}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Git command line interface to GitHub";
|
|
longDescription = ''
|
|
A simple command line interface to GitHub, enabling most useful GitHub
|
|
tasks (like creating and listing pull request or issues) to be accessed
|
|
directly through the Git command line.
|
|
'';
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
mainProgram = "git-hub";
|
|
};
|
|
}
|