This commit is contained in:
2026-09-01 10:45:21 -04:00
commit ac32649783
51 changed files with 4837 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ runCommand }:
{ wine }:
runCommand "wine-symlink" { inherit wine; } ''
mkdir -p $out/bin
for f in $wine/bin/*; do
cp -L "$f" $out/bin/
done
ln -s "$wine/bin/wine" $out/bin/wine64
for dir in include lib share; do
ln -s "$wine/$dir" $out
done
patchShebangs $out
''