2021-09-19 22:43:35 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, libnl
|
|
|
|
, ncurses
|
|
|
|
, 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";
|
2021-09-19 22:43:35 +01:00
|
|
|
version = "0.9.4";
|
2017-08-01 07:30:39 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "uoaerg";
|
|
|
|
repo = "wavemon";
|
|
|
|
rev = "v${version}";
|
2021-09-19 22:43:35 +01:00
|
|
|
sha256 = "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh";
|
2011-06-29 10:53:35 +01:00
|
|
|
};
|
2017-08-01 07:30:39 +01:00
|
|
|
|
2021-09-19 22:43:35 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libnl
|
|
|
|
ncurses
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
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-09-19 22:43:35 +01:00
|
|
|
platforms = platforms.linux;
|
2011-06-29 10:53:35 +01:00
|
|
|
};
|
2015-10-27 11:20:52 +00:00
|
|
|
}
|