Begin work

This commit is contained in:
Florian RICHER 2025-01-18 18:01:44 +01:00
parent 53f1e1f32b
commit 5bc8a32fc9
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
4 changed files with 137 additions and 4 deletions

2
.gitignore vendored
View file

@ -2,4 +2,4 @@
# Ignore build outputs from performing a nix-build or `nix build` command
result
result-*
wine_prefix

View file

@ -3,3 +3,6 @@
Project used to declare wine configuration to help developer to find the problem
bugs.winehq.org/show_bug.cgi?id=56654
Usefull links
- https://github.com/fufexan/nix-gaming/blob/master/pkgs/star-citizen/default.nix

61
flake.lock generated Normal file
View file

@ -0,0 +1,61 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1737003892,
"narHash": "sha256-RCzJE9wKByLCXmRBp+z8LK9EgdW+K+W/DXnJS4S/NVo=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "ae06b9c2d83cb5c8b12d7d0e32692e93d1379713",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

69
flake.nix Normal file
View file

@ -0,0 +1,69 @@
{
description = "Wine minimal configuration to reproduce the problem";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachSystem flake-utils.lib.allSystems (system:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs.lib.strings) concatStringsSep;
inherit (pkgs) writeShellScriptBin fetchurl;
epic_games_launcher = fetchurl {
url = "https://launcher-public-service-prod06.ol.epicgames.com/launcher/api/installer/download/EpicGamesLauncherInstaller.msi";
name = "EpicGamesLauncherInstaller.msi";
# hash = plks.lib.fakeHash;
hash = "sha256-vbd+h7nWZmNOGC6kJILZVZElyo5iwjmbitLGtCOVqqg=";
};
# concat winetricks args
winetricksArgs = concatStringsSep " " [ "corefonts" ];
install_script = writeShellScriptBin "install" ''
# install tricks
winetricks -q -f ${winetricksArgs}
wineserver -k
# Install Epic Games Launcher
wine ${epic_games_launcher} /S
wineserver -k
'';
clean_script = writeShellScriptBin "clean" ''
rm -rf $WINEPREFIX
'';
run_script = writeShellScriptBin "run" ''
'';
in
{
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
winePackages.unstableFull
winetricks
install_script
run_script
clean_script
];
shellHook = ''
export WINETRICKS_LATEST_VERSION_CHECK=disabled
export WINEPREFIX=$(pwd)/wine_prefix
export WINEARCH="win64"
export WINEDEBUG=-all
if [ ! -d "$WINEPREFIX" ]; then
install
fi
'';
};
};
});
}