2020-12-15 09:58:49 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
, qt5
|
2021-02-15 20:14:54 +00:00
|
|
|
, gnuradio3_8Minimal
|
2021-10-21 12:45:55 +00:00
|
|
|
, thrift
|
2020-12-15 09:58:49 +00:00
|
|
|
, log4cpp
|
|
|
|
, mpir
|
|
|
|
, fftwFloat
|
2021-06-10 02:57:09 +00:00
|
|
|
, alsa-lib
|
2020-12-15 09:58:49 +00:00
|
|
|
, libjack2
|
2014-03-08 17:16:10 +00:00
|
|
|
# drivers (optional):
|
2020-12-15 09:58:49 +00:00
|
|
|
, rtl-sdr
|
|
|
|
, hackrf
|
2015-05-27 19:42:15 +00:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio
|
2014-03-08 17:16:10 +00:00
|
|
|
}:
|
|
|
|
|
2015-05-27 19:42:15 +00:00
|
|
|
assert pulseaudioSupport -> libpulseaudio != null;
|
2014-03-08 17:16:10 +00:00
|
|
|
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8Minimal.pkgs.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gqrx";
|
2021-10-29 21:02:21 +00:00
|
|
|
version = "2.14.6";
|
2014-03-08 17:16:10 +00:00
|
|
|
|
2016-03-22 00:17:27 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "csete";
|
|
|
|
repo = "gqrx";
|
|
|
|
rev = "v${version}";
|
2021-10-29 21:02:21 +00:00
|
|
|
sha256 = "sha256-DMmQXcGPudAVOwuc+LVrcIzfwMMQVBZPbM6Bt1w56D8=";
|
2014-03-08 17:16:10 +00:00
|
|
|
};
|
|
|
|
|
2020-12-15 09:58:49 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
qt5.wrapQtAppsHook
|
|
|
|
];
|
2014-03-08 17:16:10 +00:00
|
|
|
buildInputs = [
|
2020-12-15 09:58:49 +00:00
|
|
|
log4cpp
|
|
|
|
mpir
|
|
|
|
fftwFloat
|
2021-06-10 02:57:09 +00:00
|
|
|
alsa-lib
|
2020-12-15 09:58:49 +00:00
|
|
|
libjack2
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8Minimal.unwrapped.boost
|
2020-12-15 09:58:49 +00:00
|
|
|
qt5.qtbase
|
|
|
|
qt5.qtsvg
|
2021-02-15 20:14:54 +00:00
|
|
|
gnuradio3_8Minimal.pkgs.osmosdr
|
2020-12-15 09:58:49 +00:00
|
|
|
rtl-sdr
|
|
|
|
hackrf
|
2021-10-21 12:45:55 +00:00
|
|
|
] ++ lib.optionals (gnuradio3_8Minimal.hasFeature "gr-ctrlport") [
|
|
|
|
thrift
|
|
|
|
gnuradio3_8Minimal.unwrapped.python.pkgs.thrift
|
2021-01-15 05:42:41 +00:00
|
|
|
] ++ lib.optionals pulseaudioSupport [ libpulseaudio ];
|
2014-03-08 17:16:10 +00:00
|
|
|
|
2014-12-06 14:50:46 +00:00
|
|
|
postInstall = ''
|
2017-08-24 21:25:55 +00:00
|
|
|
install -vD $src/gqrx.desktop -t "$out/share/applications/"
|
2020-12-09 16:50:16 +00:00
|
|
|
install -vD $src/resources/icons/gqrx.svg -t "$out/share/pixmaps/"
|
2014-12-06 14:50:46 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-03-08 17:16:10 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-03-27 23:05:50 +00:00
|
|
|
homepage = "https://gqrx.dk/";
|
2014-03-08 17:16:10 +00:00
|
|
|
# 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;
|
2017-08-06 22:05:18 +00:00
|
|
|
platforms = platforms.linux; # should work on Darwin / macOS too
|
2020-05-09 09:25:07 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
2014-03-08 17:16:10 +00:00
|
|
|
};
|
|
|
|
}
|