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
|
||||||
result-*
|
result-*
|
||||||
wine_prefix
|
wine_prefix
|
||||||
|
.direnv
|
||||||
|
|
10
flake.nix
10
flake.nix
|
@ -25,13 +25,15 @@
|
||||||
winetricksArgs = concatStringsSep " " [ "corefonts" ];
|
winetricksArgs = concatStringsSep " " [ "corefonts" ];
|
||||||
|
|
||||||
install_script = writeShellScriptBin "install" ''
|
install_script = writeShellScriptBin "install" ''
|
||||||
# install tricks
|
echo "Installing Dependencies"
|
||||||
winetricks -q -f ${winetricksArgs}
|
winetricks -q -f ${winetricksArgs}
|
||||||
wineserver -k
|
wineserver -k
|
||||||
|
echo "Dependencies Installed"
|
||||||
|
|
||||||
# Install Epic Games Launcher
|
echo "Installing Epic Games Launcher"
|
||||||
wine ${epic_games_launcher} /S
|
wine64 ${epic_games_launcher} /S
|
||||||
wineserver -k
|
wineserver -k
|
||||||
|
echo "Epic Games Launcher Installed"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
clean_script = writeShellScriptBin "clean" ''
|
clean_script = writeShellScriptBin "clean" ''
|
||||||
|
@ -46,7 +48,7 @@
|
||||||
devShells = {
|
devShells = {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
winePackages.unstableFull
|
wine64Packages.unstableFull
|
||||||
winetricks
|
winetricks
|
||||||
install_script
|
install_script
|
||||||
run_script
|
run_script
|
||||||
|
|
Loading…
Add table
Reference in a new issue