gh: 2.58.0 -> 2.59.0 (#349060)

This commit is contained in:
zowoq 2024-10-17 11:35:39 +10:00 committed by GitHub
commit e3543c8367
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +1,25 @@
{ lib, fetchFromGitHub, buildGoModule, installShellFiles, stdenv, testers, gh }: {
lib,
fetchFromGitHub,
buildGoModule,
installShellFiles,
stdenv,
testers,
gh,
}:
buildGoModule rec { buildGoModule rec {
pname = "gh"; pname = "gh";
version = "2.58.0"; version = "2.59.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cli"; owner = "cli";
repo = "cli"; repo = "cli";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-KHJKE550XlGdB++jq/1kHP4o1QISbPtbt4GU9uIP3RE="; hash = "sha256-QOc99KmcGk9b9uy1/y1FSe0zYE1q0g06k7niqtsMDmY=";
}; };
vendorHash = "sha256-6T9LQNzGpADLwI0pFvjBe5rqbXOEDZmjYCy4RhNqcFI="; vendorHash = "sha256-Mje0IbvRj6pmOe8s8PX87ntPE+ZZeciLyOP6fmv7PmI=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
@ -21,17 +29,20 @@ buildGoModule rec {
runHook postBuild runHook postBuild
''; '';
installPhase = '' installPhase =
''
runHook preInstall runHook preInstall
install -Dm755 bin/gh -t $out/bin install -Dm755 bin/gh -t $out/bin
'' + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' ''
+ lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installManPage share/man/*/*.[1-9] installManPage share/man/*/*.[1-9]
installShellCompletion --cmd gh \ installShellCompletion --cmd gh \
--bash <($out/bin/gh completion -s bash) \ --bash <($out/bin/gh completion -s bash) \
--fish <($out/bin/gh completion -s fish) \ --fish <($out/bin/gh completion -s fish) \
--zsh <($out/bin/gh completion -s zsh) --zsh <($out/bin/gh completion -s zsh)
'' + '' ''
+ ''
runHook postInstall runHook postInstall
''; '';