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
1
-
{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, libnl
5
5
+
, ncurses
6
6
+
, pkg-config
7
7
+
}:
2
8
3
9
stdenv.mkDerivation rec {
4
10
pname = "wavemon";
5
5
-
version = "0.9.3";
6
6
-
7
7
-
nativeBuildInputs = [ pkg-config ];
8
8
-
buildInputs = [ ncurses libnl ];
11
11
+
version = "0.9.4";
9
12
10
13
src = fetchFromGitHub {
11
14
owner = "uoaerg";
12
15
repo = "wavemon";
13
16
rev = "v${version}";
14
14
-
sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
17
17
+
sha256 = "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh";
15
18
};
16
19
20
20
+
nativeBuildInputs = [
21
21
+
pkg-config
22
22
+
];
23
23
+
24
24
+
buildInputs = [
25
25
+
libnl
26
26
+
ncurses
27
27
+
];
28
28
+
17
29
meta = with lib; {
18
30
description = "Ncurses-based monitoring application for wireless network devices";
19
31
homepage = "https://github.com/uoaerg/wavemon";
20
32
license = licenses.gpl3Plus;
21
33
maintainers = with maintainers; [ raskin fpletz ];
22
22
-
platforms = lib.platforms.linux;
34
34
+
platforms = platforms.linux;
23
35
};
24
36
}