summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/pcsx2
diff options
context:
space:
mode:
authorMartino Fontana <tinozzo123@tutanota.com>2022-09-18 14:29:56 +0200
committerMartino Fontana <tinozzo123@tutanota.com>2022-09-24 01:17:16 +0200
commitba914d792561486c60dc13b8bbebfa99b587f34d (patch)
tree52ffbd86a643a02403989dc7ef627f7b33384190 /pkgs/applications/emulators/pcsx2
parent7abbf517592a71fe611f9619becde6e745b94682 (diff)
pcsx2: 1.7.3165 -> 1.7.3331
pcsx2: 1.7.3324 -> 1.7.3331
Diffstat (limited to 'pkgs/applications/emulators/pcsx2')
-rw-r--r--pkgs/applications/emulators/pcsx2/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/applications/emulators/pcsx2/default.nix b/pkgs/applications/emulators/pcsx2/default.nix
index a4e99b0515bc..34eba5ed7819 100644
--- a/pkgs/applications/emulators/pcsx2/default.nix
+++ b/pkgs/applications/emulators/pcsx2/default.nix
@@ -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
)
'';