mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 18:26:16 +02:00
34fe2478a2
Co-Authored-By: Qyriad <qyriad@qyriad.me> Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
27 lines
646 B
Nix
27 lines
646 B
Nix
{ altitude, storeFun }:
|
|
|
|
with import ../config.nix;
|
|
|
|
mkDerivation {
|
|
name = "nested-sandboxing";
|
|
busybox = builtins.getEnv "busybox";
|
|
EXTRA_SANDBOX = builtins.getEnv "EXTRA_SANDBOX";
|
|
buildCommand = ''
|
|
set -x
|
|
set -eu -o pipefail
|
|
'' + (if altitude == 0 then ''
|
|
echo Deep enough! > $out
|
|
'' else ''
|
|
cp -r ${../common} ./common
|
|
cp ${../common.sh} ./common.sh
|
|
cp ${../config.nix} ./config.nix
|
|
cp -r ${./.} ./nested-sandboxing
|
|
|
|
export PATH=${builtins.getEnv "NIX_BIN_DIR"}:$PATH
|
|
|
|
source common.sh
|
|
source ./nested-sandboxing/command.sh
|
|
|
|
runNixBuild ${storeFun} ${toString altitude} >> $out
|
|
'');
|
|
}
|