nixpkgs/pkgs/applications/radio/inspectrum/default.nix

40 lines
778 B
Nix
Raw Normal View History

2017-03-14 21:08:05 +00:00
{ stdenv
, fetchFromGitHub
, pkgconfig
, cmake
, boost
, fftwFloat
, qt5
, gnuradio
, liquid-dsp
}:
2016-01-03 15:06:14 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
name = "inspectrum-unstable-2017-05-31";
2016-01-03 15:06:14 +00:00
src = fetchFromGitHub {
owner = "miek";
repo = "inspectrum";
rev = "a89d1337efb31673ccb6a6681bb89c21894c76f7";
sha256 = "1fvnr8gca25i6s9mg9b2hyqs0zzr4jicw13mimc9dhrgxklrr1yv";
2016-01-03 15:06:14 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2017-03-14 21:08:05 +00:00
buildInputs = [
cmake
qt5.qtbase
fftwFloat
boost
gnuradio
liquid-dsp
];
2016-01-03 15:06:14 +00:00
meta = with stdenv.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;
};
}