aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nix/busybox.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nix/busybox.nix b/nix/busybox.nix
index 27f663f..d9e2c18 100644
--- a/nix/busybox.nix
+++ b/nix/busybox.nix
@@ -9,7 +9,9 @@ stdenv.mkDerivation {
};
preConfigure = ''
cp ${./busybox_config} .config
- yes "n" | make oldconfig
+ '';
+ buildPhase = ''
+ make -j$NIX_BUILD_CORES all
'';
installPhase = ''
make install CONFIG_PREFIX=$out