minimal-bootstrap.findutils: parallelise

This commit is contained in:
Emily Trau 2023-09-25 02:13:26 -07:00
parent d7b804e08e
commit 47900241a2
2 changed files with 4 additions and 2 deletions

View file

@ -51,6 +51,8 @@ lib.makeScope
findutils = callPackage ./findutils { findutils = callPackage ./findutils {
bash = bash_2_05; bash = bash_2_05;
tinycc = tinycc-musl; tinycc = tinycc-musl;
gnumake = gnumake-musl;
gnutar = gnutar-musl;
}; };
gawk-mes = callPackage ./gawk/mes.nix { gawk-mes = callPackage ./gawk/mes.nix {

View file

@ -68,8 +68,8 @@ bash.runCommand "${pname}-${version}" {
--host=${hostPlatform.config} --host=${hostPlatform.config}
# Build # Build
make make -j $NIX_BUILD_CORES
# Install # Install
make install make -j $NIX_BUILD_CORES install
'' ''