mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
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
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
- "--ro-bind", "/usr", "/usr",
|
||||
- "--ro-bind", "/lib", "/lib",
|
||||
- "--ro-bind", "/lib64", "/lib64",
|
||||
+ "@BUBBLEWRAP_BIN@",
|
||||
+ "@bubblewrap_bin@",
|
||||
+ "--ro-bind", "/nix/store", "/nix/store",
|
||||
"--proc", "/proc",
|
||||
"--dev", "/dev",
|
||||
|
|
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||
patches = [
|
||||
(substituteAll {
|
||||
src = ./bubblewrap-paths.patch;
|
||||
BUBBLEWRAP_BIN = "${bubblewrap}/bin/bwrap";
|
||||
bubblewrap_bin = "${bubblewrap}/bin/bwrap";
|
||||
})
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue