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

43 lines
1,000 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
2020-02-04 03:15:27 +01:00
buildGoModule rec {
pname = "gh";
version = "1.8.1";
2020-02-04 03:15:27 +01:00
src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
sha256 = "1q0vc9wr4n813mxkf7jjj3prw1n7xv4l985qd57pg4a2js1dqa1y";
2020-02-04 03:15:27 +01:00
};
vendorSha256 = "1wv30z0jg195nkpz3rwvhixyw81lg2wzwwajq9g6s3rfjj8gs9v2";
2020-02-04 03:15:27 +01:00
nativeBuildInputs = [ installShellFiles ];
buildPhase = ''
export GO_LDFLAGS="-s -w"
make GH_VERSION=${version} bin/gh manpages
'';
2020-02-04 03:15:27 +01:00
installPhase = ''
install -Dm755 bin/gh -t $out/bin
installManPage share/man/*/*.[1-9]
2020-02-04 03:15:27 +01:00
for shell in bash fish zsh; do
$out/bin/gh completion -s $shell > gh.$shell
installShellCompletion gh.$shell
done
'';
# fails with `unable to find git executable in PATH`
doCheck = false;
2020-08-11 00:27:35 +02:00
meta = with lib; {
2020-02-04 03:15:27 +01:00
description = "GitHub CLI tool";
homepage = "https://cli.github.com/";
2020-02-04 03:15:27 +01:00
license = licenses.mit;
maintainers = with maintainers; [ zowoq ];
};
}