diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-07 13:32:01 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-07 13:32:01 +1200 |
| commit | 1d038c42b2918afd994e4a04e57d1b981c69d2bd (patch) | |
| tree | d34ba4df0b2b45466ab9f5afc6d12b748e8439c6 /nix | |
| parent | c39c964376a6bd78578de00898bb96d7892977d7 (diff) | |
| download | yerbalinux-1d038c42b2918afd994e4a04e57d1b981c69d2bd.tar.xz yerbalinux-1d038c42b2918afd994e4a04e57d1b981c69d2bd.zip | |
custom buildPhase
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/busybox.nix | 4 |
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 |
