gqrx: move to by-name

This commit is contained in:
awwpotato 2025-06-26 11:57:03 -07:00
parent 24d9d8b1fc
commit a10bca57bb
No known key found for this signature in database
2 changed files with 7 additions and 11 deletions

View File

@ -4,9 +4,7 @@
cmake,
desktopToDarwinBundle,
pkg-config,
qtbase,
qtsvg,
qtwayland,
qt6Packages,
gnuradioMinimal,
thrift,
mpir,
@ -14,7 +12,6 @@
alsa-lib,
libjack2,
wrapGAppsHook3,
wrapQtAppsHook,
# drivers (optional):
rtl-sdr,
hackrf,
@ -44,7 +41,7 @@ gnuradioMinimal.pkgs.mkDerivation rec {
nativeBuildInputs = [
cmake
pkg-config
wrapQtAppsHook
qt6Packages.wrapQtAppsHook
wrapGAppsHook3
] ++ lib.optional stdenv.hostPlatform.isDarwin desktopToDarwinBundle;
@ -55,15 +52,15 @@ gnuradioMinimal.pkgs.mkDerivation rec {
fftwFloat
libjack2
gnuradioMinimal.unwrapped.boost
qtbase
qtsvg
qt6Packages.qtbase
qt6Packages.qtsvg
gnuradioMinimal.pkgs.osmosdr
rtl-sdr
hackrf
]
++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib
qtwayland
qt6Packages.qtwayland
]
++ lib.optionals (gnuradioMinimal.hasFeature "gr-ctrlport") [
thrift

View File

@ -12222,12 +12222,11 @@ with pkgs;
inherit (ocamlPackages) google-drive-ocamlfuse;
gqrx = qt6Packages.callPackage ../applications/radio/gqrx { };
gqrx-portaudio = qt6Packages.callPackage ../applications/radio/gqrx {
gqrx-portaudio = gqrx.override {
portaudioSupport = true;
pulseaudioSupport = false;
};
gqrx-gr-audio = qt6Packages.callPackage ../applications/radio/gqrx {
gqrx-gr-audio = gqrx.override {
portaudioSupport = false;
pulseaudioSupport = false;
};