jamesdsp: build with qt6

This commit is contained in:
Tungsten842 2024-07-27 13:20:51 +02:00
parent f66cbf3e8e
commit da3d63f5e9
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,7 @@
, qmake
, qtbase
, qtsvg
, qtwayland
, stdenv
, usePipewire ? true
, usePulseaudio ? false
@ -43,6 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
libarchive
qtbase
qtsvg
qtwayland
] ++ lib.optionals usePipewire [
pipewire
] ++ lib.optionals usePulseaudio [

View File

@ -9143,8 +9143,8 @@ with pkgs;
jadx = callPackage ../tools/security/jadx { };
jamesdsp = libsForQt5.callPackage ../applications/audio/jamesdsp { };
jamesdsp-pulse = libsForQt5.callPackage ../applications/audio/jamesdsp {
jamesdsp = qt6Packages.callPackage ../applications/audio/jamesdsp { };
jamesdsp-pulse = qt6Packages.callPackage ../applications/audio/jamesdsp {
usePipewire = false;
usePulseaudio = true;
};