tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
wavemon: 0.9.3 -> 0.9.4
Fabian Affolter
4 years ago
9e421bf4
772c3e6e
+19
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
wavemon
default.nix
+19
-7
pkgs/tools/networking/wavemon/default.nix
···
1
-
{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:
0
0
0
0
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "wavemon";
5
-
version = "0.9.3";
6
-
7
-
nativeBuildInputs = [ pkg-config ];
8
-
buildInputs = [ ncurses libnl ];
9
10
src = fetchFromGitHub {
11
owner = "uoaerg";
12
repo = "wavemon";
13
rev = "v${version}";
14
-
sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
15
};
16
0
0
0
0
0
0
0
0
0
17
meta = with lib; {
18
description = "Ncurses-based monitoring application for wireless network devices";
19
homepage = "https://github.com/uoaerg/wavemon";
20
license = licenses.gpl3Plus;
21
maintainers = with maintainers; [ raskin fpletz ];
22
-
platforms = lib.platforms.linux;
23
};
24
}
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchFromGitHub
4
+
, libnl
5
+
, ncurses
6
+
, pkg-config
7
+
}:
8
9
stdenv.mkDerivation rec {
10
pname = "wavemon";
11
+
version = "0.9.4";
0
0
0
12
13
src = fetchFromGitHub {
14
owner = "uoaerg";
15
repo = "wavemon";
16
rev = "v${version}";
17
+
sha256 = "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh";
18
};
19
20
+
nativeBuildInputs = [
21
+
pkg-config
22
+
];
23
+
24
+
buildInputs = [
25
+
libnl
26
+
ncurses
27
+
];
28
+
29
meta = with lib; {
30
description = "Ncurses-based monitoring application for wireless network devices";
31
homepage = "https://github.com/uoaerg/wavemon";
32
license = licenses.gpl3Plus;
33
maintainers = with maintainers; [ raskin fpletz ];
34
+
platforms = platforms.linux;
35
};
36
}