mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
7f7b1daf94
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gqrx/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/cbn1yxw95q3ypja7bxzlm07z0zbfp9nc-gqrx-2.11.5/bin/gqrx had a zero exit code or showed the expected version - 0 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 2.11.5 with grep in /nix/store/cbn1yxw95q3ypja7bxzlm07z0zbfp9nc-gqrx-2.11.5 - directory tree listing: https://gist.github.com/45186a693bdf1b1c7ae2be1c9457ddf8 - du listing: https://gist.github.com/fe434d6ba0c5f72ef74629f65efea48f
48 lines
1.6 KiB
Nix
48 lines
1.6 KiB
Nix
{ 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 ];
|
|
};
|
|
}
|