minimal-bootstrap.xz: parallelise

This commit is contained in:
Emily Trau 2023-09-25 02:10:10 -07:00
parent 454dc76ae8
commit ee8bf1d3ef
2 changed files with 4 additions and 2 deletions

View file

@ -172,6 +172,8 @@ lib.makeScope
xz = callPackage ./xz {
bash = bash_2_05;
tinycc = tinycc-musl;
gnumake = gnumake-musl;
gnutar = gnutar-musl;
};
inherit (callPackage ./utils.nix { }) derivationWithMeta writeTextFile writeText;

View file

@ -63,8 +63,8 @@ bash.runCommand "${pname}-${version}" {
--disable-assembler
# Build
make
make -j $NIX_BUILD_CORES
# Install
make install
make -j $NIX_BUILD_CORES install
''