about summary refs log tree commit diff
path: root/pkgs/applications/emulators/cemu
diff options
context:
space:
mode:
authorZhaofeng Li <hello@zhaofeng.li>2022-12-16 01:29:33 -0700
committerZhaofeng Li <hello@zhaofeng.li>2022-12-16 01:29:33 -0700
commitc953801e405d5f5860f89906caa3b24b6b4f3320 (patch)
tree06463188e426ed2c5201fb6fc134085426d439a8 /pkgs/applications/emulators/cemu
parent0f5996b524c91677891a432cc99c7567c7c402b1 (diff)
cemu: 2.0-17 -> 2.0-22
Diffstat (limited to 'pkgs/applications/emulators/cemu')
-rw-r--r--pkgs/applications/emulators/cemu/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/applications/emulators/cemu/default.nix b/pkgs/applications/emulators/cemu/default.nix
index d2c325280e065..5df0aa7762ecf 100644
--- a/pkgs/applications/emulators/cemu/default.nix
+++ b/pkgs/applications/emulators/cemu/default.nix
@@ -20,6 +20,7 @@
 , pugixml
 , rapidjson
 , vulkan-headers
+, wayland
 , wxGTK32
 , zarchive
 
@@ -28,13 +29,13 @@
 
 stdenv.mkDerivation rec {
   pname = "cemu";
-  version = "2.0-17";
+  version = "2.0-22";
 
   src = fetchFromGitHub {
     owner = "cemu-project";
     repo = "Cemu";
     rev = "v${version}";
-    hash = "sha256-ryFph55o7s3eiqQ8kx5+3Et5S2U9H5i3fmZTc1CaCnA=";
+    hash = "sha256-ZQfJHQnT5mV6GC3dO6QV1fGsnyZMYqXiVdBSsimL5yU=";
   };
 
   patches = [
@@ -68,6 +69,7 @@ stdenv.mkDerivation rec {
     pugixml
     rapidjson
     vulkan-headers
+    wayland
     wxGTK32
     zarchive
   ];
@@ -108,10 +110,6 @@ stdenv.mkDerivation rec {
   in ''
     gappsWrapperArgs+=(
       --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath libs}"
-
-      # Force X11 to be used until Wayland is natively supported
-      # <https://github.com/cemu-project/Cemu/pull/143>
-      --set GDK_BACKEND x11
     )
   '';