summary refs log tree commit diff
path: root/pkgs/applications/radio/inspectrum/default.nix
blob: ef4bd6129a84b13a747d9e0e28065263ec6f3c60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv
, fetchFromGitHub
, pkgconfig
, cmake
, boost
, fftwFloat
, qt5
, gnuradio
, liquid-dsp
}:

stdenv.mkDerivation {
  name = "inspectrum-unstable-2017-05-31";

  src = fetchFromGitHub {
    owner = "miek";
    repo = "inspectrum";
    rev = "a89d1337efb31673ccb6a6681bb89c21894c76f7";
    sha256 = "1fvnr8gca25i6s9mg9b2hyqs0zzr4jicw13mimc9dhrgxklrr1yv";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [
    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;
  };
}