2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:
|
2017-08-01 08:30:39 +02:00
|
|
|
|
2015-10-27 12:20:52 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-01-03 09:44:14 +01:00
|
|
|
pname = "wavemon";
|
|
|
|
version = "0.9.3";
|
2017-08-01 08:30:39 +02:00
|
|
|
|
2021-01-03 09:44:14 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-08-01 08:30:39 +02:00
|
|
|
buildInputs = [ ncurses libnl ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "uoaerg";
|
|
|
|
repo = "wavemon";
|
|
|
|
rev = "v${version}";
|
2021-01-03 09:44:14 +01:00
|
|
|
sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
|
2011-06-29 11:53:35 +02:00
|
|
|
};
|
2017-08-01 08:30:39 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-09-02 12:17:59 +02:00
|
|
|
inherit version;
|
2017-08-01 08:30:39 +02:00
|
|
|
description = "Ncurses-based monitoring application for wireless network devices";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/uoaerg/wavemon";
|
2017-08-01 08:30:39 +02:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ raskin fpletz ];
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.linux;
|
2011-06-29 11:53:35 +02:00
|
|
|
};
|
2015-10-27 12:20:52 +01:00
|
|
|
}
|