0bfb75520f
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
41 lines
789 B
Nix
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;
|
|
};
|
|
}
|