mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
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:
parent
7aea165e72
commit
7263f7c433
@ -144,6 +144,9 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
|
# This is primarily an IO bound build; there's little benefit to building remotely.
|
||||||
|
preferLocalBuild = true;
|
||||||
|
|
||||||
# all binaries are already stripped
|
# all binaries are already stripped
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user