forked from mirrors/nixpkgs
inspectrum: init at 20160103
This commit is contained in:
parent
a413b8fde1
commit
42023e9a46
23
pkgs/applications/misc/inspectrum/default.nix
Normal file
23
pkgs/applications/misc/inspectrum/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchFromGitHub, pkgconfig, cmake, fftwFloat, qt5 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "inspectrum-${version}";
|
||||
version = "20160103";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "miek";
|
||||
repo = "inspectrum";
|
||||
rev = "a60d711b46130d37b7c05074285558cd67a28820";
|
||||
sha256 = "1q7izpyi7c9qszygiaq0zs3swihxlss3n52q7wx2jq97hdi2hmzy";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig cmake qt5.qtbase fftwFloat ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -12183,6 +12183,8 @@ let
|
|||
inherit (pythonPackages) lxml;
|
||||
lcms = lcms2;
|
||||
};
|
||||
|
||||
inspectrum = callPackage ../applications/misc/inspectrum { };
|
||||
|
||||
ion3 = callPackage ../applications/window-managers/ion-3 {
|
||||
lua = lua5;
|
||||
|
|
Loading…
Reference in a new issue