nixpkgs/pkgs/applications/radio/inspectrum/default.nix
B 0bfb75520f
inspectrum: add qt wrapper, cleanup (#80144)
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
2020-02-14 21:17:33 -05:00

41 lines
789 B
Nix

{ lib
, mkDerivation
, fetchFromGitHub
, pkgconfig
, cmake
, boost
, fftwFloat
, gnuradio
, liquid-dsp
, qtbase
}:
mkDerivation {
pname = "inspectrum";
version = "unstable-2017-05-31";
src = fetchFromGitHub {
owner = "miek";
repo = "inspectrum";
rev = "a89d1337efb31673ccb6a6681bb89c21894c76f7";
sha256 = "1fvnr8gca25i6s9mg9b2hyqs0zzr4jicw13mimc9dhrgxklrr1yv";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
fftwFloat
boost
gnuradio
liquid-dsp
qtbase
];
meta = with lib; {
description = "Tool for analysing captured signals from sdr receivers";
homepage = "https://github.com/miek/inspectrum";
maintainers = with maintainers; [ mog ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}