direnv: workaround hardcoded GOFLAGS

wip/yesman
zowoq 4 years ago
parent d1884cbadf
commit 11c19be426
  1. 5
      pkgs/tools/misc/direnv/default.nix

@ -18,6 +18,11 @@ buildGoModule rec {
stdenv.lib.optionalString (!stdenv.hostPlatform.isWindows)
"${bash}/bin/bash";
# fix hardcoded GOFLAGS in makefile. remove once https://github.com/direnv/direnv/issues/718 is closed.
postPatch = ''
substituteInPlace GNUmakefile --replace "export GOFLAGS=-mod=vendor" ""
'';
# replace the build phase to use the GNUMakefile instead
buildPhase = ''
make BASH_PATH=$BASH_PATH

Loading…
Cancel
Save