nixpkgs/pkgs/applications/version-management/git-and-tools/gh/default.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
2020-02-04 02:15:27 +00:00
buildGoModule rec {
pname = "gh";
2021-05-20 06:50:44 +00:00
version = "1.10.2";
2020-02-04 02:15:27 +00:00
src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
2021-05-20 06:50:44 +00:00
sha256 = "sha256-hI4kV7Xj0oMEfD6SzZ+KWHmMp9yGtr18HPPwkOpr5JA=";
2020-02-04 02:15:27 +00:00
};
vendorSha256 = "sha256-A7Bo0HQ5Z2SXY32jWCYgwvvInD3xYLSXvipzeaQTDiM=";
2020-02-04 02:15:27 +00:00
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
'';
2020-02-04 02:15:27 +00:00
installPhase = ''
runHook preInstall
install -Dm755 bin/gh -t $out/bin
installManPage share/man/*/*.[1-9]
2020-02-04 02:15:27 +00:00
for shell in bash fish zsh; do
$out/bin/gh completion -s $shell > gh.$shell
installShellCompletion gh.$shell
done
runHook postInstall
2020-02-04 02:15:27 +00:00
'';
# fails with `unable to find git executable in PATH`
doCheck = false;
2020-08-10 22:27:35 +00:00
meta = with lib; {
2020-02-04 02:15:27 +00:00
description = "GitHub CLI tool";
homepage = "https://cli.github.com/";
2020-02-04 02:15:27 +00:00
license = licenses.mit;
maintainers = with maintainers; [ zowoq ];
};
}