summary refs log tree commit diff
path: root/pkgs/tools/networking/wavemon/default.nix
blob: 19bfd6ae4547cb980aa6a31d7fa7e24c2831d566 (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
{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:

stdenv.mkDerivation rec {
  pname = "wavemon";
  version = "0.9.3";

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ ncurses libnl ];

  src = fetchFromGitHub {
    owner = "uoaerg";
    repo = "wavemon";
    rev = "v${version}";
    sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
  };

  meta = with lib; {
    inherit version;
    description = "Ncurses-based monitoring application for wireless network devices";
    homepage = "https://github.com/uoaerg/wavemon";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ raskin fpletz ];
    platforms = lib.platforms.linux;
  };
}