Loading pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix +11 −0 Original line number Diff line number Diff line Loading @@ -84,6 +84,17 @@ kaem.runCommand "${pname}-${version}" { "-e" (builtins.toFile "bash-builder.sh" '' export CONFIG_SHELL=$SHELL # Normalize the NIX_BUILD_CORES variable. The value might be 0, which # means that we're supposed to try and auto-detect the number of # available CPU cores at run-time. We don't have nproc to detect the # number of available CPU cores so default to 1 if not set. NIX_BUILD_CORES="''${NIX_BUILD_CORES:-1}" if [ $NIX_BUILD_CORES -le 0 ]; then NIX_BUILD_CORES=1 fi export NIX_BUILD_CORES bash -eux $buildCommandPath '') ]; Loading pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix +11 −0 Original line number Diff line number Diff line Loading @@ -54,6 +54,17 @@ bootBash.runCommand "${pname}-${version}" { "-e" (builtins.toFile "bash-builder.sh" '' export CONFIG_SHELL=$SHELL # Normalize the NIX_BUILD_CORES variable. The value might be 0, which # means that we're supposed to try and auto-detect the number of # available CPU cores at run-time. NIX_BUILD_CORES="''${NIX_BUILD_CORES:-1}" if ((NIX_BUILD_CORES <= 0)); then guess=$(nproc 2>/dev/null || true) ((NIX_BUILD_CORES = guess <= 0 ? 1 : guess)) fi export NIX_BUILD_CORES bash -eux $buildCommandPath '') ]; Loading Loading
pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix +11 −0 Original line number Diff line number Diff line Loading @@ -84,6 +84,17 @@ kaem.runCommand "${pname}-${version}" { "-e" (builtins.toFile "bash-builder.sh" '' export CONFIG_SHELL=$SHELL # Normalize the NIX_BUILD_CORES variable. The value might be 0, which # means that we're supposed to try and auto-detect the number of # available CPU cores at run-time. We don't have nproc to detect the # number of available CPU cores so default to 1 if not set. NIX_BUILD_CORES="''${NIX_BUILD_CORES:-1}" if [ $NIX_BUILD_CORES -le 0 ]; then NIX_BUILD_CORES=1 fi export NIX_BUILD_CORES bash -eux $buildCommandPath '') ]; Loading
pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix +11 −0 Original line number Diff line number Diff line Loading @@ -54,6 +54,17 @@ bootBash.runCommand "${pname}-${version}" { "-e" (builtins.toFile "bash-builder.sh" '' export CONFIG_SHELL=$SHELL # Normalize the NIX_BUILD_CORES variable. The value might be 0, which # means that we're supposed to try and auto-detect the number of # available CPU cores at run-time. NIX_BUILD_CORES="''${NIX_BUILD_CORES:-1}" if ((NIX_BUILD_CORES <= 0)); then guess=$(nproc 2>/dev/null || true) ((NIX_BUILD_CORES = guess <= 0 ? 1 : guess)) fi export NIX_BUILD_CORES bash -eux $buildCommandPath '') ]; Loading