Skip to content

Commit

Permalink
go-licenses: fix returning empty output when GOROOT differs from buil…
Browse files Browse the repository at this point in the history
…t environment

see google/go-licenses#149
  • Loading branch information
SuperSandro2000 committed Jan 11, 2024
1 parent 47ac956 commit a0c07c0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pkgs/development/tools/misc/go-licenses/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{ lib
, buildGoModule
, fetchFromGitHub
, go
, installShellFiles
, makeWrapper
}:

buildGoModule rec {
Expand All @@ -26,13 +28,23 @@ buildGoModule rec {

nativeBuildInputs = [
installShellFiles
makeWrapper
];

subPackages = [ "." ];

allowGoReference = true;

postInstall = ''
installShellCompletion --cmd go-licenses \
--bash <("$out/bin/go-licenses" completion bash) \
--fish <("$out/bin/go-licenses" completion fish) \
--zsh <("$out/bin/go-licenses" completion zsh)
# workaround empty output when GOROOT differs from built environment
# see https://github.com/google/go-licenses/issues/149
wrapProgram "$out/bin/go-licenses" \
--run 'export GOROOT=${go}/share/go'
'';

# Tests require internet connection
Expand Down

0 comments on commit a0c07c0

Please sign in to comment.