dolphin-emu-beta: 5.0-17269 -> 5.0-17995
This commit is contained in:
parent
78fa1556b9
commit
6ca0697f8f
2 changed files with 9 additions and 5 deletions
|
@ -23,6 +23,7 @@
|
||||||
, mbedtls_2
|
, mbedtls_2
|
||||||
, soundtouch
|
, soundtouch
|
||||||
, sfml
|
, sfml
|
||||||
|
, minizip-ng
|
||||||
, xz
|
, xz
|
||||||
, hidapi
|
, hidapi
|
||||||
, fmt_8
|
, fmt_8
|
||||||
|
@ -52,13 +53,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "dolphin-emu";
|
pname = "dolphin-emu";
|
||||||
version = "5.0-17269";
|
version = "5.0-17995";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dolphin-emu";
|
owner = "dolphin-emu";
|
||||||
repo = "dolphin";
|
repo = "dolphin";
|
||||||
rev = "48c9c224cf9f82f0f9f2690b7cc6283d7448480c";
|
rev = "8bad821019721b9b72701b495da95656ace5fea5";
|
||||||
sha256 = "sha256-WC3jukRygZigLx987CzRmOmJ7DeS1atXrMzU98sRzEg=";
|
sha256 = "sha256-uxHzn+tXRBr11OPpZ4ELBw7DTJH4mnqUBOeyPlXNAh8=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -93,6 +94,7 @@ stdenv.mkDerivation rec {
|
||||||
mbedtls_2
|
mbedtls_2
|
||||||
soundtouch
|
soundtouch
|
||||||
sfml
|
sfml
|
||||||
|
minizip-ng
|
||||||
xz
|
xz
|
||||||
qtbase
|
qtbase
|
||||||
fmt_8
|
fmt_8
|
||||||
|
@ -131,10 +133,12 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
qtWrapperArgs = lib.optionals stdenv.isLinux [
|
qtWrapperArgs = lib.optionals stdenv.isLinux [
|
||||||
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [vulkan-loader]}"
|
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}"
|
||||||
# https://bugs.dolphin-emu.org/issues/11807
|
# https://bugs.dolphin-emu.org/issues/11807
|
||||||
# The .desktop file should already set this, but Dolphin may be launched in other ways
|
# The .desktop file should already set this, but Dolphin may be launched in other ways
|
||||||
"--set QT_QPA_PLATFORM xcb"
|
"--set QT_QPA_PLATFORM xcb"
|
||||||
|
# https://bugs.dolphin-emu.org/issues/12913
|
||||||
|
"--set QT_XCB_NO_XI2 1"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Use nix-provided libraries instead of submodules
|
# Use nix-provided libraries instead of submodules
|
||||||
|
|
|
@ -2177,7 +2177,7 @@ with pkgs;
|
||||||
|
|
||||||
dolphin-emu = callPackage ../applications/emulators/dolphin-emu { };
|
dolphin-emu = callPackage ../applications/emulators/dolphin-emu { };
|
||||||
|
|
||||||
dolphin-emu-beta = qt5.callPackage ../applications/emulators/dolphin-emu/master.nix {
|
dolphin-emu-beta = qt6Packages.callPackage ../applications/emulators/dolphin-emu/master.nix {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreBluetooth ForceFeedback IOKit OpenGL VideoToolbox;
|
inherit (darwin.apple_sdk.frameworks) CoreBluetooth ForceFeedback IOKit OpenGL VideoToolbox;
|
||||||
inherit (darwin) moltenvk;
|
inherit (darwin) moltenvk;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue