tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
yabridge: workaround for wine 9.5
Kira Bruneau
2 years ago
aa263fc8
c8dd9fb0
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
audio
yabridge
default.nix
+5
-4
pkgs/tools/audio/yabridge/default.nix
···
149
149
150
150
# Hard code wine path in wrapper scripts generated by winegcc
151
151
postFixup = ''
152
152
-
for exe in "$out"/bin/*.exe; do
153
153
-
substituteInPlace "$exe" \
154
154
-
--replace 'WINELOADER="wine"' 'WINELOADER="${wine}/bin/wine"'
155
155
-
done
152
152
+
substituteInPlace "$out/bin/yabridge-host-32.exe" \
153
153
+
--replace 'WINELOADER="wine"' 'WINELOADER="${wine}/bin/wine"'
154
154
+
155
155
+
substituteInPlace "$out/bin/yabridge-host.exe" \
156
156
+
--replace 'WINELOADER="wine"' 'WINELOADER="${wine}/bin/wine64"'
156
157
'';
157
158
158
159
passthru.updateScript = nix-update-script { };