about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorIvv <41924494+IvarWithoutBones@users.noreply.github.com>2022-03-21 18:09:43 +0100
committerGitHub <noreply@github.com>2022-03-21 18:09:43 +0100
commit857e2fe41fa3f3acb37089fbcf53726e56cc54f1 (patch)
tree3624b9bc761864ae98804ec9ad6fe31be18fa4d0 /pkgs/applications/emulators
parent2c6ad38a20c99c72a54d2e471a6a5690d039687f (diff)
parente1432a6f48360ef4a132dbb792a45f5a17808e8b (diff)
downloadnixlib-857e2fe41fa3f3acb37089fbcf53726e56cc54f1.tar
nixlib-857e2fe41fa3f3acb37089fbcf53726e56cc54f1.tar.gz
nixlib-857e2fe41fa3f3acb37089fbcf53726e56cc54f1.tar.bz2
nixlib-857e2fe41fa3f3acb37089fbcf53726e56cc54f1.tar.lz
nixlib-857e2fe41fa3f3acb37089fbcf53726e56cc54f1.tar.xz
nixlib-857e2fe41fa3f3acb37089fbcf53726e56cc54f1.tar.zst
nixlib-857e2fe41fa3f3acb37089fbcf53726e56cc54f1.zip
Merge pull request #164597 from sbruder/update-yuzu/ea-2557
yuzu-{ea,mainline}: {2432,882} -> {2557,953}
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/yuzu/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/emulators/yuzu/default.nix b/pkgs/applications/emulators/yuzu/default.nix
index 9e45ba0cd2cb..f212abb448a6 100644
--- a/pkgs/applications/emulators/yuzu/default.nix
+++ b/pkgs/applications/emulators/yuzu/default.nix
@@ -4,25 +4,25 @@ let
 in {
   mainline = libsForQt5.callPackage ./base.nix rec {
     pname = "yuzu-mainline";
-    version = "882";
+    version = "953";
     branchName = branch;
     src = fetchFromGitHub {
       owner = "yuzu-emu";
       repo = "yuzu-mainline";
       rev = "mainline-0-${version}";
-      sha256 = "17j845laxnaq50icwl32yisdivwcnwa59fxdr297yxrz4hmfzhxq";
+      sha256 = "0p07gybyhr6flzmhz92qlrwcq7l37c2wmcxw8sbrvhj2pgaaw9ic";
       fetchSubmodules = true;
     };
   };
   early-access = libsForQt5.callPackage ./base.nix rec {
     pname = "yuzu-ea";
-    version = "2432";
+    version = "2557";
     branchName = branch;
     src = fetchFromGitHub {
       owner = "pineappleEA";
       repo = "pineapple-src";
       rev = "EA-${version}";
-      sha256 = "0zqab61rphgjzyxk52idhr7dqwwxih0f8b9hig3zvrwkdry9wfh4";
+      sha256 = "013xxgyn8y5fv0xbrm0zfl9xmi0gx4hpflrbjskg1hcvb2bjqyvj";
     };
   };
 }.${branch}