2019-05-27 13:26:31 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, qtbase, qtsvg, gnuradio, boost, gr-osmosdr
|
2019-08-07 19:32:45 +01:00
|
|
|
, mkDerivation
|
2014-03-08 17:16:10 +00:00
|
|
|
# drivers (optional):
|
2015-07-27 12:01:48 +01:00
|
|
|
, rtl-sdr, hackrf
|
2015-05-27 20:42:15 +01:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio
|
2014-03-08 17:16:10 +00:00
|
|
|
}:
|
|
|
|
|
2015-05-27 20:42:15 +01:00
|
|
|
assert pulseaudioSupport -> libpulseaudio != null;
|
2014-03-08 17:16:10 +00:00
|
|
|
|
2019-08-07 19:32:45 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gqrx";
|
2020-10-25 15:17:36 +00:00
|
|
|
version = "2.13.2";
|
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}";
|
2020-10-25 15:17:36 +00:00
|
|
|
sha256 = "1lcy9gqb1x9fwq550bywj7h66rdacq5893wsax1p7qvqa27d945b";
|
2014-03-08 17:16:10 +00:00
|
|
|
};
|
|
|
|
|
2017-08-24 22:25:55 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-03-08 17:16:10 +00:00
|
|
|
buildInputs = [
|
2019-05-27 13:26:31 +01:00
|
|
|
qtbase qtsvg gnuradio boost gr-osmosdr rtl-sdr hackrf
|
2015-05-27 20:42:15 +01:00
|
|
|
] ++ stdenv.lib.optionals pulseaudioSupport [ libpulseaudio ];
|
2014-03-08 17:16:10 +00:00
|
|
|
|
2016-03-22 00:17:27 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-06 14:50:46 +00:00
|
|
|
postInstall = ''
|
2017-08-24 22:25:55 +01:00
|
|
|
install -vD $src/gqrx.desktop -t "$out/share/applications/"
|
|
|
|
install -vD $src/resources/icons/gqrx.svg -t "$out/share/icons/"
|
2014-12-06 14:50:46 +00:00
|
|
|
'';
|
|
|
|
|
2014-03-08 17:16:10 +00:00
|
|
|
meta = with stdenv.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.
|
|
|
|
'';
|
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 23:05:18 +01:00
|
|
|
platforms = platforms.linux; # should work on Darwin / macOS too
|
2020-05-09 10:25:07 +01:00
|
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
2014-03-08 17:16:10 +00:00
|
|
|
};
|
|
|
|
}
|