minimal-bootstrap.findutils: parallelise
This commit is contained in:
parent
d7b804e08e
commit
47900241a2
2 changed files with 4 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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
|
||||||
''
|
''
|
||||||
|
|
Loading…
Reference in a new issue