Merge pull request #330388 from Tungsten842/jamesdsp-qt6

jamesdsp: build with qt6
This commit is contained in:
rewine 2024-07-28 00:25:10 +08:00 committed by GitHub
commit f144faebf1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

@ -9141,8 +9141,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;
};