ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
installShellFiles,
|
|
stdenv,
|
|
testers,
|
|
gh,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gh";
|
|
version = "2.59.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cli";
|
|
repo = "cli";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-QOc99KmcGk9b9uy1/y1FSe0zYE1q0g06k7niqtsMDmY=";
|
|
};
|
|
|
|
vendorHash = "sha256-Mje0IbvRj6pmOe8s8PX87ntPE+ZZeciLyOP6fmv7PmI=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
make GO_LDFLAGS="-s -w" GH_VERSION=${version} bin/gh ${lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) "manpages"}
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase =
|
|
''
|
|
runHook preInstall
|
|
install -Dm755 bin/gh -t $out/bin
|
|
''
|
|
+ lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installManPage share/man/*/*.[1-9]
|
|
|
|
installShellCompletion --cmd gh \
|
|
--bash <($out/bin/gh completion -s bash) \
|
|
--fish <($out/bin/gh completion -s fish) \
|
|
--zsh <($out/bin/gh completion -s zsh)
|
|
''
|
|
+ ''
|
|
runHook postInstall
|
|
'';
|
|
|
|
# most tests require network access
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = gh;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GitHub CLI tool";
|
|
homepage = "https://cli.github.com/";
|
|
changelog = "https://github.com/cli/cli/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
mainProgram = "gh";
|
|
maintainers = with maintainers; [ zowoq ];
|
|
};
|
|
}
|