2021-01-25 22:26:59 +01:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
|
2020-02-04 03:15:27 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gh";
|
2021-04-02 21:48:47 +02:00
|
|
|
version = "1.8.1";
|
2020-02-04 03:15:27 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cli";
|
|
|
|
repo = "cli";
|
|
|
|
rev = "v${version}";
|
2021-04-02 21:48:47 +02:00
|
|
|
sha256 = "1q0vc9wr4n813mxkf7jjj3prw1n7xv4l985qd57pg4a2js1dqa1y";
|
2020-02-04 03:15:27 +01:00
|
|
|
};
|
|
|
|
|
2021-03-30 21:43:53 +02:00
|
|
|
vendorSha256 = "1wv30z0jg195nkpz3rwvhixyw81lg2wzwwajq9g6s3rfjj8gs9v2";
|
2020-02-04 03:15:27 +01:00
|
|
|
|
2020-05-15 16:20:36 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
2020-09-16 22:05:20 +02:00
|
|
|
export GO_LDFLAGS="-s -w"
|
2020-05-15 16:20:36 +02:00
|
|
|
make GH_VERSION=${version} bin/gh manpages
|
|
|
|
'';
|
2020-02-04 03:15:27 +01:00
|
|
|
|
2020-05-15 16:20:36 +02: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
|
|
|
|
'';
|
|
|
|
|
2021-01-25 22:26:59 +01:00
|
|
|
# fails with `unable to find git executable in PATH`
|
|
|
|
doCheck = false;
|
2020-08-11 00:27:35 +02:00
|
|
|
|
2020-03-29 00:32:01 +01:00
|
|
|
meta = with lib; {
|
2020-02-04 03:15:27 +01:00
|
|
|
description = "GitHub CLI tool";
|
2020-02-14 00:46:21 +01:00
|
|
|
homepage = "https://cli.github.com/";
|
2020-02-04 03:15:27 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zowoq ];
|
|
|
|
};
|
2020-05-15 16:20:36 +02:00
|
|
|
}
|