Use wine64 instead

This commit is contained in:
Florian RICHER 2025-01-18 18:18:02 +01:00
parent c9fb92681a
commit 1c9f2c2fd1
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
3 changed files with 8 additions and 4 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

1
.gitignore vendored
View file

@ -3,3 +3,4 @@
result
result-*
wine_prefix
.direnv

View file

@ -25,13 +25,15 @@
winetricksArgs = concatStringsSep " " [ "corefonts" ];
install_script = writeShellScriptBin "install" ''
# install tricks
echo "Installing Dependencies"
winetricks -q -f ${winetricksArgs}
wineserver -k
echo "Dependencies Installed"
# Install Epic Games Launcher
wine ${epic_games_launcher} /S
echo "Installing Epic Games Launcher"
wine64 ${epic_games_launcher} /S
wineserver -k
echo "Epic Games Launcher Installed"
'';
clean_script = writeShellScriptBin "clean" ''
@ -46,7 +48,7 @@
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
winePackages.unstableFull
wine64Packages.unstableFull
winetricks
install_script
run_script