2016-04-16 23:32:55 +00:00
|
|
|
{ stdenv, fetchFromGitHub, qt4, qmake4Hook, gnuradio, boost, gnuradio-osmosdr
|
2014-03-08 17:16:10 +00:00
|
|
|
# drivers (optional):
|
2015-07-27 11:01:48 +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
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gqrx-${version}";
|
2016-03-22 00:17:27 +00:00
|
|
|
version = "2.5.3";
|
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}";
|
|
|
|
sha256 = "02pavd1kc0gsnrl18bfa01r2f3j4j05zly4a8zwss9yrsgf8432x";
|
2014-03-08 17:16:10 +00:00
|
|
|
};
|
|
|
|
|
2016-04-16 23:32:55 +00:00
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
|
2014-03-08 17:16:10 +00:00
|
|
|
buildInputs = [
|
2015-07-27 11:01:48 +00:00
|
|
|
qt4 gnuradio boost gnuradio-osmosdr rtl-sdr hackrf
|
2015-05-27 19:42:15 +00: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 = ''
|
|
|
|
mkdir -p "$out/share/applications"
|
|
|
|
mkdir -p "$out/share/icons"
|
|
|
|
|
|
|
|
cp gqrx.desktop "$out/share/applications/"
|
2016-03-22 00:17:27 +00:00
|
|
|
cp resources/icons/gqrx.svg "$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.
|
|
|
|
'';
|
|
|
|
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 / OS X too
|
2016-03-22 00:17:27 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor the-kenny fpletz ];
|
2014-03-08 17:16:10 +00:00
|
|
|
};
|
|
|
|
}
|