ppsspp: migrate to by-name

This commit is contained in:
Anderson Torres 2023-10-13 00:44:50 -03:00
parent b2dacdd608
commit ee255dd1bb
2 changed files with 4 additions and 3 deletions

View File

@ -2736,9 +2736,10 @@ with pkgs;
pcsxr = callPackage ../applications/emulators/pcsxr { };
ppsspp = callPackage ../applications/emulators/ppsspp { };
ppsspp-sdl = ppsspp;
ppsspp-sdl = ppsspp.override {
enableQt = false;
enableVulkan = true;
};
ppsspp-sdl-wayland = ppsspp.override {
forceWayland = true;