about summary refs log tree commit diff
path: root/pkgs/games/build-support/build-sandbox/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-09-28 21:29:58 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-10-03 23:41:28 +0200
commitc82d21271656400f5e87e0baf46e61224fe1aaa9 (patch)
tree2bf2eec304bc90f84cbbd1366c2e324b699f8bb4 /pkgs/games/build-support/build-sandbox/default.nix
parent8d77ca6a9a94d4547a0abc8f27753fb7755e69cd (diff)
pkgs/sandbox: Include basic runtime paths
These paths are things such as /etc and /run but also the .Xauthority
file, which contains the cookie to connect to the X server.

What is still missing is access to the DRI libraries, which is a bit
trickier, because we need to add those store paths at runtime and we
need to also mount all of the dependencies.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/games/build-support/build-sandbox/default.nix')
-rw-r--r--pkgs/games/build-support/build-sandbox/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/build-support/build-sandbox/default.nix b/pkgs/games/build-support/build-sandbox/default.nix
index 615f5358..2b45f3e5 100644
--- a/pkgs/games/build-support/build-sandbox/default.nix
+++ b/pkgs/games/build-support/build-sandbox/default.nix
@@ -33,10 +33,10 @@ stdenv.mkDerivation ({
     echo 'static bool setup_app_paths(void) {' > params.c
 
     for dep in $runtimeDeps; do
-      echo 'if (!bind_mount("'"$dep"'", true)) return false;' >> params.c
+      echo 'if (!bind_mount("'"$dep"'", true, true)) return false;' >> params.c
     done
 
-    ${lib.concatMapStrings (extra: let
+    ${lib.concatMapStringsSep "\n" (extra: let
       escaped = lib.escapeShellArg (lib.escape ["\\" "\""] extra);
       result = "echo 'if (!extra_mount(\"'${escaped}'\")) return false;'";
     in "${result} >> params.c") extraSandboxPaths}