pcsx2: switch updater to stable versions

Signed-off-by: Marcin Serwin <marcin@serwin.dev>

+8 -4
+8 -4
pkgs/by-name/pc/pcsx2/update.sh
··· 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p bash nix-update common-updater-scripts coreutils 3 4 set -ex 5 6 - latestRev=`git ls-remote -b https://github.com/PCSX2/pcsx2_patches main | cut -f1` 7 8 update-source-version pcsx2 \ 9 --ignore-same-version \ 10 - --rev=$latestRev \ 11 --source-key=pcsx2_patches 12 - nix-update --version=unstable pcsx2
··· 1 #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p bash nix-update common-updater-scripts coreutils jq 3 4 set -ex 5 6 + latestPatchesRev=`git ls-remote -b https://github.com/PCSX2/pcsx2_patches main | cut -f1` 7 8 update-source-version pcsx2 \ 9 --ignore-same-version \ 10 + --rev=$latestPatchesRev \ 11 --source-key=pcsx2_patches 12 + 13 + latestVersion="`curl "https://api.github.com/repos/PCSX2/pcsx2/releases/latest" \ 14 + | jq -r ".tag_name[1:]"`" 15 + 16 + nix-update pcsx2 --version=$latestVersion