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