aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/radio/gqrx
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-02-09 16:04:47 +0100
committerElis Hirwing <elis@hirwing.se>2019-02-09 21:38:47 +0100
commit96339a1a9c9b67c1283cb24cb614cbf8d2d79bb1 (patch)
treedb3b64d07975a4155428ee4a00cb1c54864209ea /pkgs/applications/radio/gqrx
parentbb001f066d7003d1b2716280f9eaf5e4add96a0d (diff)
gqrx: Move from misc to radio
Diffstat (limited to 'pkgs/applications/radio/gqrx')
-rw-r--r--pkgs/applications/radio/gqrx/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/applications/radio/gqrx/default.nix b/pkgs/applications/radio/gqrx/default.nix
new file mode 100644
index 00000000000..f7c7ca5472e
--- /dev/null
+++ b/pkgs/applications/radio/gqrx/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, fetchFromGitHub, cmake, qtbase, qtsvg, gnuradio, boost, gnuradio-osmosdr
+# drivers (optional):
+, rtl-sdr, hackrf
+, pulseaudioSupport ? true, libpulseaudio
+}:
+
+assert pulseaudioSupport -> libpulseaudio != null;
+
+stdenv.mkDerivation rec {
+ name = "gqrx-${version}";
+ version = "2.11.5";
+
+ src = fetchFromGitHub {
+ owner = "csete";
+ repo = "gqrx";
+ rev = "v${version}";
+ sha256 = "0q9i0dhd6blagxzk84pzqjq8n4ym3jc1mkkhygg8yncr4vq2saaf";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [
+ qtbase qtsvg gnuradio boost gnuradio-osmosdr rtl-sdr hackrf
+ ] ++ stdenv.lib.optionals pulseaudioSupport [ libpulseaudio ];
+
+ enableParallelBuilding = true;
+
+ postInstall = ''
+ install -vD $src/gqrx.desktop -t "$out/share/applications/"
+ install -vD $src/resources/icons/gqrx.svg -t "$out/share/icons/"
+ '';
+
+ 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.
+ '';
+ homepage = http://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 the-kenny fpletz ];
+ };
+}