buildGoPackage: use a separator when joining extraSrcPaths together

wip/yesman
Piotr Bogdan 6 years ago
parent fbac1cbc06
commit d1fad21401
  1. 2
      pkgs/development/go-modules/generic/default.nix

@ -98,7 +98,7 @@ go.stdenv.mkDerivation (
rmdir goPath
'') + (lib.optionalString (extraSrcPaths != []) ''
${rsync}/bin/rsync -a ${lib.concatMapStrings (p: "${p}/src") extraSrcPaths} go
${rsync}/bin/rsync -a ${lib.concatMapStringsSep " " (p: "${p}/src") extraSrcPaths} go
'') + ''
export GOPATH=$NIX_BUILD_TOP/go:$GOPATH

Loading…
Cancel
Save