mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #14493 from kamilchm/build-go-without-vendor
buildGoPackage: we don't need to build vendored packages
This commit is contained in:
commit
6db84ed559
@ -106,7 +106,7 @@ go.stdenv.mkDerivation (
|
||||
echo "$subPackages" | sed "s,\(^\| \),\1$goPackagePath/,g"
|
||||
else
|
||||
pushd go/src >/dev/null
|
||||
find "$goPackagePath" -type f -name \*$type.go -exec dirname {} \; | sort | uniq
|
||||
find "$goPackagePath" -type f -name \*$type.go -exec dirname {} \; | grep -v "/vendor/" | sort | uniq
|
||||
popd >/dev/null
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user