Commit e057edafe877
Changed files (1)
tools
review-tool
tools/review-tool/default.nix
@@ -4,7 +4,6 @@
makeWrapper,
gitMinimal,
gh,
- jira-cli-go,
}:
buildGoModule {
@@ -18,13 +17,14 @@ buildGoModule {
subPackages = [ "cmd/review-tool" ];
+ # Note: jira is NOT bundled here. The tool expects the host's `jira`
+ # wrapper (which injects JIRA_API_TOKEN via passage) to be in PATH.
postInstall = ''
wrapProgram $out/bin/review-tool \
--prefix PATH : ${
lib.makeBinPath [
gitMinimal
gh
- jira-cli-go
]
}
'';