{ lib, fetchFromGitHub, buildGoModule, installShellFiles }: buildGoModule rec { pname = "gh"; version = "1.3.1"; src = fetchFromGitHub { owner = "cli"; repo = "cli"; rev = "v${version}"; sha256 = "1j1nyx4ly87g0hk3hfw3qbykb64hrg3vg4r52z1w146v6ln7lm7h"; }; vendorSha256 = "19gv7ggbry46h40d9sc5cqba95vjfknzdd1cn3xa5409qaczg9lg"; nativeBuildInputs = [ installShellFiles ]; buildPhase = '' export GO_LDFLAGS="-s -w" make GH_VERSION=${version} bin/gh manpages ''; installPhase = '' install -Dm755 bin/gh -t $out/bin installManPage share/man/*/*.[1-9] 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; meta = with lib; { description = "GitHub CLI tool"; homepage = "https://cli.github.com/"; license = licenses.mit; maintainers = with maintainers; [ zowoq ]; }; }