Merge pull request #181829 from sbruder/update-yuzu/ea-2840

yuzu-{ea,mainline}: {2725,1088} -> {2841,1092}

authored by Ivv and committed by GitHub e4d49de4 0005ee60

+7 -7
+6 -6
pkgs/applications/emulators/yuzu/default.nix
··· 5 5 }: 6 6 7 7 let 8 - # Fetched from https://api.yuzu-emu.org/gamedb, last updated 2022-05-12 8 + # Fetched from https://api.yuzu-emu.org/gamedb, last updated 2022-07-14 9 9 # Please make sure to update this when updating yuzu! 10 10 compat-list = fetchurl { 11 11 name = "yuzu-compat-list"; 12 - url = "https://web.archive.org/web/20220512184801/https://api.yuzu-emu.org/gamedb"; 12 + url = "https://web.archive.org/web/20220714160745/https://api.yuzu-emu.org/gamedb"; 13 13 sha256 = "sha256-anOmO7NscHDsQxT03+YbJEyBkXjhcSVGgKpDwt//GHw="; 14 14 }; 15 15 in { 16 16 mainline = libsForQt5.callPackage ./generic.nix rec { 17 17 pname = "yuzu-mainline"; 18 - version = "1088"; 18 + version = "1092"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "yuzu-emu"; 22 22 repo = "yuzu-mainline"; 23 23 rev = "mainline-0-${version}"; 24 - sha256 = "0kjiynv1fwc14w7382qgzayz5j9n2rnzbpbq49zgcywc4wwcxzs2"; 24 + sha256 = "1avcq924q0r8pfv1s0a88iyii7yixcxpb3yhlj0xg9zqnwp9r23y"; 25 25 fetchSubmodules = true; 26 26 }; 27 27 ··· 30 30 31 31 early-access = libsForQt5.callPackage ./generic.nix rec { 32 32 pname = "yuzu-ea"; 33 - version = "2725"; 33 + version = "2841"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "pineappleEA"; 37 37 repo = "pineapple-src"; 38 38 rev = "EA-${version}"; 39 - sha256 = "1nmcl9y9chr7cdvnra5zs1v42d3i801hmsjdlz3fmp15n04bcjmp"; 39 + sha256 = "16lrq9drv0x7gs1siq37m4zmh6d2g3vhnw9qcqajr9p0vmlpnh6l"; 40 40 fetchSubmodules = true; 41 41 }; 42 42
+1 -1
pkgs/applications/emulators/yuzu/update.sh
··· 53 53 OLD_EA_HASH="$(getLocalHash "yuzu-ea")" 54 54 55 55 NEW_EA_VERSION="$(curl -s ${GITHUB_TOKEN:+"-u \":$GITHUB_TOKEN\""} \ 56 - "https://api.github.com/repos/pineappleEA/pineapple-src/releases?per_page=1" | jq -r '.[0].name' | cut -d"-" -f2 | cut -d" " -f1)" 56 + "https://api.github.com/repos/pineappleEA/pineapple-src/releases?per_page=1" | jq -r '.[0].tag_name' | cut -d"-" -f2 | cut -d" " -f1)" 57 57 58 58 if [[ "${OLD_EA_VERSION}" = "${NEW_EA_VERSION}" ]]; then 59 59 echo "yuzu-ea is already up to date!"