mathematica: Prefer building locally (#100856)

There is little benefit to copying a 4GB tarball over the network,
just to perform an I/O-bound operation and then copy the
multi-gigabyte result back.
This commit is contained in:
Ben Gamari 2020-11-19 19:42:22 -05:00 committed by GitHub
parent 7aea165e72
commit 7263f7c433
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,6 +144,9 @@ stdenv.mkDerivation rec {
'';
dontBuild = true;
# This is primarily an IO bound build; there's little benefit to building remotely.
preferLocalBuild = true;
# all binaries are already stripped
dontStrip = true;