mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
90bca3541d
Diff: https://github.com/cli/cli/compare/v2.24.1...v2.24.3 Changelog: https://github.com/cli/cli/releases/tag/v2.24.3
57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{ lib, fetchFromGitHub, buildGoModule, installShellFiles, testers, gh }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gh";
|
|
version = "2.24.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cli";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-Z0Z8mMTk1uAgegL4swJswCJ3D5Zi7DMTai9oQXH+2WM=";
|
|
};
|
|
|
|
vendorHash = "sha256-nn2DzjcXHiuSaiEuWNZTAZ3+OKrEpRzUPzqmH+gZ9sY=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
# upstream unsets these to handle cross but it breaks our build
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace "GOOS= GOARCH= GOARM= GOFLAGS= CGO_ENABLED=" ""
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
make GO_LDFLAGS="-s -w" GH_VERSION=${version} bin/gh manpages
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm755 bin/gh -t $out/bin
|
|
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;
|
|
maintainers = with maintainers; [ zowoq ];
|
|
};
|
|
}
|