From 88261e706fc9c551b82c4131f1649b682b3dd057 Mon Sep 17 00:00:00 2001 From: azban Date: Sat, 9 May 2026 00:19:01 -0600 Subject: [PATCH] rpcs3: add cmake flag to not build shared libs --- pkgs/by-name/rp/rpcs3/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/rp/rpcs3/package.nix b/pkgs/by-name/rp/rpcs3/package.nix index b5d5c085f865..b4518e0a27b6 100644 --- a/pkgs/by-name/rp/rpcs3/package.nix +++ b/pkgs/by-name/rp/rpcs3/package.nix @@ -76,6 +76,7 @@ stdenv.mkDerivation (finalAttrs: { ''; cmakeFlags = [ + (lib.cmakeBool "BUILD_SHARED_LIBS" false) (lib.cmakeBool "USE_SYSTEM_ZLIB" true) (lib.cmakeBool "USE_SYSTEM_LIBUSB" true) (lib.cmakeBool "USE_SYSTEM_LIBPNG" true)