2022-11-04T02:23:42 gh 2.18.1 -> 2.19.0 https://repology.org/metapackage/gh/versions 2022-11-04T02:23:44 attrpath: gh 2022-11-04T02:23:44 Checking auto update branch... 2022-11-04T02:23:44 No auto update branch exists 2022-11-04T02:23:45 Old version 2.18.1" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule, installShellFiles }: buildGoModule rec { pname = "gh"; version = "2.19.0"; src = fetchFromGitHub { owner = "cli"; repo = "cli"; rev = "v${version}"; sha256 = "sha256-SqKjN9Met+NsfaQO3PGTPua/ZVaorYbSJHWeXgEm524="; }; vendorSha256 = "sha256-VWeUVdrAzbS7OmHHZIPlyq6WVj4I39n7ozS7n3ReqJk="; 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; 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 ]; }; }