buildFHSUserEnv: add .env support

This commit is contained in:
Nikolay Amiantov 2015-08-26 19:37:48 +03:00
parent 9635f89fff
commit 47ea8c097c
2 changed files with 31 additions and 15 deletions

View File

@ -1,4 +1,4 @@
{ writeText, writeScriptBin, stdenv, ruby } : { env, runScript } :
{ runCommand, writeText, writeScriptBin, stdenv, ruby } : { env, runScript ? "bash" } :
let
name = env.pname;
@ -9,21 +9,37 @@ let
${builtins.readFile ./chroot-user.rb}
'';
init = writeText "init" ''
# Make /tmp directory
mkdir -m 1777 /tmp
init = run: writeText "${name}-init" ''
# Make /tmp directory
mkdir -m 1777 /tmp
# Expose sockets in /tmp
for i in /host-tmp/.*-unix; do
ln -s "$i" "/tmp/$(basename "$i")"
done
# Expose sockets in /tmp
for i in /host-tmp/.*-unix; do
ln -s "$i" "/tmp/$(basename "$i")"
done
[ -d "$1" ] && [ -r "$1" ] && cd "$1"
shift
exec "${runScript}" "$@"
'';
[ -d "$1" ] && [ -r "$1" ] && cd "$1"
shift
exec ${run} "$@"
'';
in writeScriptBin name ''
in runCommand name {
passthru.env =
runCommand "${name}-shell-env" {
shellHook = ''
exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)"
'';
} ''
echo >&2 ""
echo >&2 "*** User chroot 'env' attributes are intended for interactive nix-shell sessions, not for building! ***"
echo >&2 ""
exit 1
'';
} ''
mkdir -p $out/bin
cat <<EOF >$out/bin/${name}
#! ${stdenv.shell}
exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init} "$(pwd)" "$@"
exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init runScript} "\$(pwd)" "\$@"
EOF
chmod +x $out/bin/${name}
''

View File

@ -296,7 +296,7 @@ let
buildFHSUserEnv = args: userFHSEnv {
env = buildFHSEnv (removeAttrs args [ "runScript" ]);
runScript = args.runScript;
runScript = args.runScript or "bash";
};
buildMaven = callPackage ../build-support/build-maven.nix {};