gnomeExtensions.screenshot-tool: Fix paths

Fixes #136112.

piegames 48064d95 0ce4ae67

+10
+10
pkgs/desktops/gnome/extensions/extensionPatches.nix
··· 19 ''; 20 }); 21 22 }
··· 19 ''; 20 }); 21 22 + "gnome-shell-screenshot@ttll.de" = super."gnome-shell-screenshot@ttll.de".overrideAttrs (old: { 23 + # Requires gjs 24 + # https://github.com/NixOS/nixpkgs/issues/136112 25 + postPatch = '' 26 + for file in *.js; do 27 + substituteInPlace $file --replace "gjs" "${gjs}/bin/gjs" 28 + done 29 + ''; 30 + }); 31 + 32 }