Merge pull request #204211 from wackbyte/bump-grapejuice

grapejuice: 6.2.2 -> 7.2.0
This commit is contained in:
Artturi 2022-12-03 15:18:59 +02:00 committed by GitHub
commit 31ebec3e88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,17 +14,18 @@
, winetricks
, wine
, glxinfo
, xrandr
}:
python3Packages.buildPythonApplication rec {
pname = "grapejuice";
version = "6.2.2";
version = "7.2.0";
src = fetchFromGitLab {
owner = "BrinkerVII";
repo = "grapejuice";
rev = "v${version}";
sha256 = "sha256-wwM3q8Z4bYZod7/KcGc/PXlyLQxLRPkF1TdtFcg8mNE=";
sha256 = "sha256-BNVoSJbGi+u2DHuAicOjEUpDlmu25vMWoBudbV1FLgM=";
};
nativeBuildInputs = [
@ -50,13 +51,14 @@ python3Packages.buildPythonApplication rec {
requests
unidecode
click
pydantic
];
dontWrapGApps = true;
makeWrapperArgs = [
"\${gappsWrapperArgs[@]}"
"--prefix PATH : ${lib.makeBinPath [ xdg-user-dirs wine winetricks pciutils glxinfo ]}"
"--prefix PATH : ${lib.makeBinPath [ xdg-user-dirs wine winetricks pciutils glxinfo xrandr ]}"
# make xdg-open overrideable at runtime
"--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}"
];
@ -82,8 +84,8 @@ python3Packages.buildPythonApplication rec {
substituteInPlace src/grapejuice_common/paths.py \
--replace 'return local_share() / "locale"' 'return Path("${placeholder "out"}/share/locale")'
substituteInPlace src/grapejuice_common/features/settings.py \
--replace 'k_default_wine_home: "",' 'k_default_wine_home: "${wine}",'
substituteInPlace src/grapejuice_common/models/settings_model.py \
--replace 'default_wine_home: Optional[str] = ""' 'default_wine_home: Optional[str] = "${wine}"'
'';
postInstall = ''