Commit b983f84b authored by Andrew Marshall's avatar Andrew Marshall
Browse files

wine: install in parallel

On a 48-thread CPU, this reduced the time of `nix-build -A
wineWowPackages.stable` from ~15 min. to ~10 min.
parent 3c15feef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ buildPhase
# checkPhase

eval "$preInstall"
cd $TMP/wine-wow && make install
cd $TMP/wine64 && make install
cd $TMP/wine-wow && make install -j$NIX_BUILD_CORES
cd $TMP/wine64 && make install -j$NIX_BUILD_CORES
eval "$postInstall"
fixupPhase