gnome3.gnome-desktop: fix path substitution
`substituteAll` intentionally doesn't work with all caps: https://github.com/NixOS/nixpkgs/issues/28086
This commit is contained in:
parent
10f8039990
commit
d5ba27a700
@ -8,7 +8,7 @@
|
|||||||
- "--ro-bind", "/usr", "/usr",
|
- "--ro-bind", "/usr", "/usr",
|
||||||
- "--ro-bind", "/lib", "/lib",
|
- "--ro-bind", "/lib", "/lib",
|
||||||
- "--ro-bind", "/lib64", "/lib64",
|
- "--ro-bind", "/lib64", "/lib64",
|
||||||
+ "@BUBBLEWRAP_BIN@",
|
+ "@bubblewrap_bin@",
|
||||||
+ "--ro-bind", "/nix/store", "/nix/store",
|
+ "--ro-bind", "/nix/store", "/nix/store",
|
||||||
"--proc", "/proc",
|
"--proc", "/proc",
|
||||||
"--dev", "/dev",
|
"--dev", "/dev",
|
||||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
patches = [
|
patches = [
|
||||||
(substituteAll {
|
(substituteAll {
|
||||||
src = ./bubblewrap-paths.patch;
|
src = ./bubblewrap-paths.patch;
|
||||||
BUBBLEWRAP_BIN = "${bubblewrap}/bin/bwrap";
|
bubblewrap_bin = "${bubblewrap}/bin/bwrap";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user