Merge pull request #191793 from SuperSamus/pcsx2

This commit is contained in:
Sandro 2022-09-26 00:34:41 +02:00 committed by GitHub
commit 77ea361da5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@
stdenv.mkDerivation rec {
pname = "pcsx2";
version = "1.7.3165";
version = "1.7.3331";
# nixpkgs-update: no auto update
src = fetchFromGitHub {
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
repo = "pcsx2";
fetchSubmodules = true;
rev = "v${version}";
hash = "sha256-FdLmLZLpS8zPmHVn4k0nE6vS/omYVIOal9ej0h3bE/Y=";
hash = "sha256-0RcmBMxKj/gnkNEjn2AUSSO1DzyNSf1lOZWPSUq6764=";
};
cmakeFlags = [
@ -79,13 +79,9 @@ stdenv.mkDerivation rec {
zlib
];
# Wayland doesn't seem to work right now (crashes when booting a game).
# Try removing `--prefix GDK_BACKEND : x11` on the next update.
# (This may be solved when the project finshes migrating to Qt)
preFixup = ''
gappsWrapperArgs+=(
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}
--prefix GDK_BACKEND : x11
)
'';