8f254b8107
Fixes saving settings on non-NixOS systems ("No GSettings schemas are installed on the system"). Fix https://github.com/NixOS/nixpkgs/issues/173848.
94 lines
2.4 KiB
Nix
94 lines
2.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, qt5
|
|
, gnuradio3_8Minimal
|
|
, thrift
|
|
, mpir
|
|
, fftwFloat
|
|
, alsa-lib
|
|
, libjack2
|
|
, wrapGAppsHook
|
|
# drivers (optional):
|
|
, rtl-sdr
|
|
, hackrf
|
|
, pulseaudioSupport ? true, libpulseaudio
|
|
, portaudioSupport ? false, portaudio
|
|
}:
|
|
|
|
assert pulseaudioSupport -> libpulseaudio != null;
|
|
assert portaudioSupport -> portaudio != null;
|
|
# audio backends are mutually exclusive
|
|
assert !(pulseaudioSupport && portaudioSupport);
|
|
|
|
gnuradio3_8Minimal.pkgs.mkDerivation rec {
|
|
pname = "gqrx";
|
|
version = "2.15.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gqrx-sdr";
|
|
repo = "gqrx";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KQBtYVEfOXpzfxNMgTu6Hup7XpjubrpvZazcFlml4Kg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qt5.wrapQtAppsHook
|
|
wrapGAppsHook
|
|
];
|
|
buildInputs = [
|
|
gnuradio3_8Minimal.unwrapped.log4cpp
|
|
mpir
|
|
fftwFloat
|
|
alsa-lib
|
|
libjack2
|
|
gnuradio3_8Minimal.unwrapped.boost
|
|
qt5.qtbase
|
|
qt5.qtsvg
|
|
gnuradio3_8Minimal.pkgs.osmosdr
|
|
rtl-sdr
|
|
hackrf
|
|
] ++ lib.optionals (gnuradio3_8Minimal.hasFeature "gr-ctrlport") [
|
|
thrift
|
|
gnuradio3_8Minimal.unwrapped.python.pkgs.thrift
|
|
] ++ lib.optionals pulseaudioSupport [ libpulseaudio ]
|
|
++ lib.optionals portaudioSupport [ portaudio ];
|
|
|
|
cmakeFlags =
|
|
let
|
|
audioBackend =
|
|
if pulseaudioSupport
|
|
then "Pulseaudio"
|
|
else if portaudioSupport
|
|
then "Portaudio"
|
|
else "Gr-audio";
|
|
in [
|
|
"-DLINUX_AUDIO_BACKEND=${audioBackend}"
|
|
];
|
|
|
|
# Prevent double-wrapping, inject wrapper args manually instead.
|
|
dontWrapGApps = true;
|
|
preFixup = ''
|
|
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Software defined radio (SDR) receiver";
|
|
longDescription = ''
|
|
Gqrx is a software defined radio receiver powered by GNU Radio and the Qt
|
|
GUI toolkit. It can process I/Q data from many types of input devices,
|
|
including Funcube Dongle Pro/Pro+, rtl-sdr, HackRF, and Universal
|
|
Software Radio Peripheral (USRP) devices.
|
|
'';
|
|
homepage = "https://gqrx.dk/";
|
|
# Some of the code comes from the Cutesdr project, with a BSD license, but
|
|
# it's currently unknown which version of the BSD license that is.
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux; # should work on Darwin / macOS too
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
|
};
|
|
}
|