Revert "mongo-tools: fix build"

This reverts commit 3e391b839ae6e9d7440bc8626d8f9c1c925aa81b.

This is a slower way to build the tools. Lets get this going in parallel
again. Instead of replacing the whole install process, keep the parts
which work and do just the binary copying ourselves.
This commit is contained in:
William A. Kennington III 2015-09-01 01:35:06 -07:00
parent 8570384288
commit cf92e411ee

View File

@ -1701,11 +1701,14 @@ let
# Mongodb incorrectly names all of their binaries main
# Let's work around this with our own installer
buildPhase = ''
preInstall = ''
mkdir -p $bin/bin
while read b; do
rm -f go/bin/main
go install $goPackagePath/$b/main
mv go/bin/main go/bin/$b
cp go/bin/main $bin/bin/$b
done < <(find go/src/$goPackagePath -name main | xargs dirname | xargs basename -a)
rm -r go/bin
'';
};