fcf6989c92
* Upgrades Inspectrum to new version to work with QT5.8 * inspectrum: also increment version number
40 lines
759 B
Nix
40 lines
759 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, pkgconfig
|
|
, cmake
|
|
, boost
|
|
, fftwFloat
|
|
, qt5
|
|
, gnuradio
|
|
, liquid-dsp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "inspectrum-unstable-2017-05-31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miek";
|
|
repo = "inspectrum";
|
|
rev = "a89d1337efb31673ccb6a6681bb89c21894c76f7";
|
|
sha256 = "1fvnr8gca25i6s9mg9b2hyqs0zzr4jicw13mimc9dhrgxklrr1yv";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig
|
|
cmake
|
|
qt5.qtbase
|
|
fftwFloat
|
|
boost
|
|
gnuradio
|
|
liquid-dsp
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|