tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
inspectrum: init at 20160103
Matthew O'Gorman
10 years ago
42023e9a
a413b8fd
+25
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
inspectrum
default.nix
top-level
all-packages.nix
+23
pkgs/applications/misc/inspectrum/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, pkgconfig, cmake, fftwFloat, qt5 }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "inspectrum-${version}";
5
5
+
version = "20160103";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "miek";
9
9
+
repo = "inspectrum";
10
10
+
rev = "a60d711b46130d37b7c05074285558cd67a28820";
11
11
+
sha256 = "1q7izpyi7c9qszygiaq0zs3swihxlss3n52q7wx2jq97hdi2hmzy";
12
12
+
};
13
13
+
14
14
+
buildInputs = [ pkgconfig cmake qt5.qtbase fftwFloat ];
15
15
+
16
16
+
meta = with stdenv.lib; {
17
17
+
description = "Tool for analysing captured signals from sdr receivers";
18
18
+
homepage = https://github.com/miek/inspectrum;
19
19
+
maintainers = with maintainers; [ mog ];
20
20
+
platforms = platforms.linux;
21
21
+
license = licenses.gpl3Plus;
22
22
+
};
23
23
+
}
+2
pkgs/top-level/all-packages.nix
···
12183
12183
inherit (pythonPackages) lxml;
12184
12184
lcms = lcms2;
12185
12185
};
12186
12186
+
12187
12187
+
inspectrum = callPackage ../applications/misc/inspectrum { };
12186
12188
12187
12189
ion3 = callPackage ../applications/window-managers/ion-3 {
12188
12190
lua = lua5;