about summary refs log tree commit diff
path: root/pkgs/by-name/gl/glycin-loaders/fix-glycin-paths.patch
blob: f05edf96a72a9a9ec279b49e5efa8d48a6825c7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/vendor/glycin/src/sandbox.rs b/vendor/glycin/src/sandbox.rs
index 7d00b36..aa70dc7 100644
--- a/vendor/glycin/src/sandbox.rs
+++ b/vendor/glycin/src/sandbox.rs
@@ -165,7 +165,7 @@ impl Sandbox {
 
                 args.push(self.command);
 
-                ("bwrap".into(), args, Some(seccomp_memfd))
+                ("@bwrap@".into(), args, Some(seccomp_memfd))
             }
             SandboxMechanism::FlatpakSpawn => {
                 let memory_limit = Self::memory_limit();
@@ -233,8 +233,8 @@ impl Sandbox {
                 "/",
                 // Make /usr available as read only
                 "--ro-bind",
-                "/usr",
-                "/usr",
+                "/nix/store",
+                "/nix/store",
                 // Make tmpfs dev available
                 "--dev",
                 "/dev",