From d0504bf98f7c29175657342e2450c502e53d82b6 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 28 Aug 2026 07:01:58 -0400 Subject: [PATCH] Update rpcs3. --- nix/configuration/configuration.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/nix/configuration/configuration.nix b/nix/configuration/configuration.nix index fb47dc2..1c5dafb 100644 --- a/nix/configuration/configuration.nix +++ b/nix/configuration/configuration.nix @@ -250,6 +250,28 @@ in (disableTests "onetbb") # oneTBB tests hang forever on machines with a single core (like my build virtual machine) https://github.com/uxlfoundation/oneTBB/issues/1557 (disableTests "aws-c-common") # aws-c-common tests time out on my build virtual machine but run fine on my laptop. (disableOptimizations "onnxruntime") # QuantizeLinearOpTest test failing. + (final: prev: { + rpcs3 = prev.rpcs3.overrideAttrs ( + finalAttrs: prevAttrs: { + version = "0.0.42-19843"; + + src = final.fetchFromGitHub { + owner = "RPCS3"; + repo = "rpcs3"; + rev = "6567a5a2f8ab47a89db395d6b47a7b59b23d6960"; + postCheckout = '' + cd $out/3rdparty + git submodule update --init \ + fusion/fusion asmjit/asmjit yaml-cpp/yaml-cpp SoundTouch/soundtouch stblib/stb \ + feralinteractive/feralinteractive wolfssl/wolfssl + ''; + hash = "sha256-a1c1+Ui7XyHFTGEZAgRuJasCzQqr2PZNTlwaDUWVb18="; + }; + + patches = [ ]; + } + ); + }) ]; # This option defines the first version of NixOS you have installed on this particular machine,