This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

busybox: add -host package

+4 -3
+1 -1
host-packages.nix
··· 7 7 in 8 8 9 9 { 10 + busybox-host = pkgs.busybox; 10 11 clang = llvm.clang-unwrapped; 11 12 clang-host = llvm.clang; 12 13 inherit (llvm) lld; ··· 14 15 bash 15 16 bc 16 17 bison 17 - busybox 18 18 cmake 19 19 curl 20 20 esbuild
+3 -2
packages/run/package.nix
··· 3 3 currentSystem, 4 4 bash, 5 5 busybox, 6 + busybox-host ? busybox, 6 7 }: 7 8 8 9 let ··· 33 34 path 34 35 ++ [ 35 36 bash 36 - busybox 37 + busybox-host 37 38 ] 38 39 ); 39 40 inherit command; ··· 53 54 : ${"$"}{outputs:=out} 54 55 55 56 if [ 0 -eq "$NIX_BUILD_CORES" ]; then 56 - NIX_BUILD_CORES=$(${busybox}/bin/nproc) 57 + NIX_BUILD_CORES=$(${busybox-host}/bin/nproc) 57 58 fi 58 59 59 60 eval "_build() { $(cat $commandPath); }"