Use wine64 instead
This commit is contained in:
parent
c9fb92681a
commit
1c9f2c2fd1
3 changed files with 8 additions and 4 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use flake
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@
|
|||
result
|
||||
result-*
|
||||
wine_prefix
|
||||
.direnv
|
||||
|
|
10
flake.nix
10
flake.nix
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue