summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/yuzu
diff options
context:
space:
mode:
authorSimon Bruder <simon@sbruder.de>2022-07-17 10:11:15 +0200
committerSimon Bruder <simon@sbruder.de>2022-07-17 10:11:15 +0200
commitbafaa05bf1cdb00030b8f4303eb1f976cf728793 (patch)
treeaa0929dcae23b4325c9dddb0dc8497f9cb63eaa2 /pkgs/applications/emulators/yuzu
parentff8e90326fb0a0308d7c4560b871e2236a686507 (diff)
yuzu-{ea,mainline}: {2725,1088} -> {2841,1092}
This also changes the update script, because pineapple changed their releases which no longer have a name set explicitly.
Diffstat (limited to 'pkgs/applications/emulators/yuzu')
-rw-r--r--pkgs/applications/emulators/yuzu/default.nix12
-rwxr-xr-xpkgs/applications/emulators/yuzu/update.sh2
2 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/emulators/yuzu/default.nix b/pkgs/applications/emulators/yuzu/default.nix
index 5c6fd625cf66..bc63771494e2 100644
--- a/pkgs/applications/emulators/yuzu/default.nix
+++ b/pkgs/applications/emulators/yuzu/default.nix
@@ -5,23 +5,23 @@
}:
let
- # Fetched from https://api.yuzu-emu.org/gamedb, last updated 2022-05-12
+ # Fetched from https://api.yuzu-emu.org/gamedb, last updated 2022-07-14
# Please make sure to update this when updating yuzu!
compat-list = fetchurl {
name = "yuzu-compat-list";
- url = "https://web.archive.org/web/20220512184801/https://api.yuzu-emu.org/gamedb";
+ url = "https://web.archive.org/web/20220714160745/https://api.yuzu-emu.org/gamedb";
sha256 = "sha256-anOmO7NscHDsQxT03+YbJEyBkXjhcSVGgKpDwt//GHw=";
};
in {
mainline = libsForQt5.callPackage ./generic.nix rec {
pname = "yuzu-mainline";
- version = "1088";
+ version = "1092";
src = fetchFromGitHub {
owner = "yuzu-emu";
repo = "yuzu-mainline";
rev = "mainline-0-${version}";
- sha256 = "0kjiynv1fwc14w7382qgzayz5j9n2rnzbpbq49zgcywc4wwcxzs2";
+ sha256 = "1avcq924q0r8pfv1s0a88iyii7yixcxpb3yhlj0xg9zqnwp9r23y";
fetchSubmodules = true;
};
@@ -30,13 +30,13 @@ in {
early-access = libsForQt5.callPackage ./generic.nix rec {
pname = "yuzu-ea";
- version = "2725";
+ version = "2841";
src = fetchFromGitHub {
owner = "pineappleEA";
repo = "pineapple-src";
rev = "EA-${version}";
- sha256 = "1nmcl9y9chr7cdvnra5zs1v42d3i801hmsjdlz3fmp15n04bcjmp";
+ sha256 = "16lrq9drv0x7gs1siq37m4zmh6d2g3vhnw9qcqajr9p0vmlpnh6l";
fetchSubmodules = true;
};
diff --git a/pkgs/applications/emulators/yuzu/update.sh b/pkgs/applications/emulators/yuzu/update.sh
index e128db066f35..8dedcab02813 100755
--- a/pkgs/applications/emulators/yuzu/update.sh
+++ b/pkgs/applications/emulators/yuzu/update.sh
@@ -53,7 +53,7 @@ updateEarlyAccess() {
OLD_EA_HASH="$(getLocalHash "yuzu-ea")"
NEW_EA_VERSION="$(curl -s ${GITHUB_TOKEN:+"-u \":$GITHUB_TOKEN\""} \
- "https://api.github.com/repos/pineappleEA/pineapple-src/releases?per_page=1" | jq -r '.[0].name' | cut -d"-" -f2 | cut -d" " -f1)"
+ "https://api.github.com/repos/pineappleEA/pineapple-src/releases?per_page=1" | jq -r '.[0].tag_name' | cut -d"-" -f2 | cut -d" " -f1)"
if [[ "${OLD_EA_VERSION}" = "${NEW_EA_VERSION}" ]]; then
echo "yuzu-ea is already up to date!"