From 9178d2ab4a5782c487040846f95a51c9a1433385 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Fri, 16 Jan 2026 16:21:31 +0100 Subject: [PATCH] gh-review-conductor: init at 1.3.0 --- .../gh/gh-review-conductor/package.nix | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 pkgs/by-name/gh/gh-review-conductor/package.nix diff --git a/pkgs/by-name/gh/gh-review-conductor/package.nix b/pkgs/by-name/gh/gh-review-conductor/package.nix new file mode 100644 index 000000000000..2efaa6c77a0d --- /dev/null +++ b/pkgs/by-name/gh/gh-review-conductor/package.nix @@ -0,0 +1,45 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + nix-update-script, +}: + +buildGoModule (finalAttrs: { + pname = "gh-review-conductor"; + version = "1.3.0"; + + src = fetchFromGitHub { + owner = "gh-tui-tools"; + repo = "gh-review-conductor"; + tag = "v${finalAttrs.version}"; + hash = "sha256-gNQmO+Sa9n+hfy5CBSPqSXhHTzZz8D1sLrNqs+z9Rx4="; + }; + + vendorHash = "sha256-xAOTSdyNRZDKDPnCrvaepBOTDrnHLEA53K5TBxkqbDM="; + + ldflags = [ + "-s" + "-w" + "-X github.com/gh-tui-tools/gh-review-conductor/cmd.version=${finalAttrs.version}" + ]; + + # Tests require GitHub authentication and network access + doCheck = false; + + __structuredAttrs = true; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "GitHub CLI extension to apply PR review comments and suggestions directly to your local code"; + homepage = "https://github.com/gh-tui-tools/gh-review-conductor"; + changelog = "https://github.com/gh-tui-tools/gh-review-conductor/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ + vdemeester + chmouel + ]; + mainProgram = "gh-prreview"; + }; +})