yabridge: revert workaround for wine 9.5 (#394378)

This reverts commit aa263fc8a00458a08837f7c8753f9c485becaf85.

authored by Kira Bruneau and committed by GitHub 66917f1c 0d6d1ce1

+4 -5
+4 -5
pkgs/tools/audio/yabridge/default.nix
··· 152 153 # Hard code wine path in wrapper scripts generated by winegcc 154 postFixup = '' 155 - substituteInPlace "$out/bin/yabridge-host-32.exe" \ 156 - --replace 'WINELOADER="wine"' 'WINELOADER="${wine}/bin/wine"' 157 - 158 - substituteInPlace "$out/bin/yabridge-host.exe" \ 159 - --replace 'WINELOADER="wine"' 'WINELOADER="${wine}/bin/wine64"' 160 ''; 161 162 passthru.updateScript = nix-update-script { };
··· 152 153 # Hard code wine path in wrapper scripts generated by winegcc 154 postFixup = '' 155 + for exe in "$out"/bin/*.exe; do 156 + substituteInPlace "$exe" \ 157 + --replace-fail 'WINELOADER="wine"' 'WINELOADER="${wine}/bin/wine"' 158 + done 159 ''; 160 161 passthru.updateScript = nix-update-script { };