dolphin-emu: add more frameworks

This commit is contained in:
Weijia Wang 2023-04-14 18:02:18 +03:00
parent dd3eded988
commit 9bdc744841
2 changed files with 3 additions and 1 deletions

View File

@ -46,6 +46,7 @@
# Darwin-only dependencies # Darwin-only dependencies
, CoreBluetooth , CoreBluetooth
, ForceFeedback , ForceFeedback
, IOBluetooth
, IOKit , IOKit
, moltenvk , moltenvk
, OpenGL , OpenGL
@ -106,6 +107,7 @@ stdenv.mkDerivation rec {
] ++ lib.optionals stdenv.isDarwin [ ] ++ lib.optionals stdenv.isDarwin [
CoreBluetooth CoreBluetooth
ForceFeedback ForceFeedback
IOBluetooth
IOKit IOKit
moltenvk moltenvk
OpenGL OpenGL

View File

@ -2369,7 +2369,7 @@ with pkgs;
### APPLICATIONS/EMULATORS/DOLPHIN-EMU ### APPLICATIONS/EMULATORS/DOLPHIN-EMU
dolphin-emu = qt6Packages.callPackage ../applications/emulators/dolphin-emu { dolphin-emu = qt6Packages.callPackage ../applications/emulators/dolphin-emu {
inherit (darwin.apple_sdk_11_0.frameworks) CoreBluetooth ForceFeedback IOKit OpenGL VideoToolbox; inherit (darwin.apple_sdk_11_0.frameworks) CoreBluetooth ForceFeedback IOBluetooth IOKit OpenGL VideoToolbox;
inherit (darwin) moltenvk; inherit (darwin) moltenvk;
stdenv = stdenv =
if stdenv.isDarwin && stdenv.isAarch64 then llvmPackages_14.stdenv if stdenv.isDarwin && stdenv.isAarch64 then llvmPackages_14.stdenv