about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/gnome-3/core/gnome-shell/fix-paths.patch
blob: 3207af110885a96b2c6bd80df23d709276a05d25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/js/ui/extensionDownloader.js
+++ b/js/ui/extensionDownloader.js
@@ -86,7 +86,7 @@
     stream.output_stream.write_bytes(contents, null);
     stream.close(null);
     let [success, pid] = GLib.spawn_async(null,
-                                          ['unzip', '-uod', dir.get_path(), '--', file.get_path()],
+                                          ['@unzip@/bin/unzip', '-uod', dir.get_path(), '--', file.get_path()],
                                           null,
                                           GLib.SpawnFlags.SEARCH_PATH | GLib.SpawnFlags.DO_NOT_REAP_CHILD,
                                           null);
--- a/js/ui/status/keyboard.js
+++ b/js/ui/status/keyboard.js
@@ -1059,7 +1059,7 @@ class InputSourceIndicator extends PanelMenu.Button {
         let description = xkbLayout;
         if (xkbVariant.length > 0)
             description = description + '\t' + xkbVariant;
 
-        Util.spawn(['gkbd-keyboard-display', '-l', description]);
+        Util.spawn(['@libgnomekbd@/bin/gkbd-keyboard-display', '-l', description]);
     }
 });