2018-11-25 17:20:42 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses, libconfuse
|
2014-09-21 23:05:52 +01:00
|
|
|
, libnl }:
|
2013-07-25 11:43:40 +01:00
|
|
|
|
2014-09-21 23:05:52 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "bmon";
|
2016-12-31 17:06:11 +00:00
|
|
|
version = "4.0";
|
2013-07-25 11:43:40 +01:00
|
|
|
|
2014-09-21 23:05:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tgraf";
|
|
|
|
repo = "bmon";
|
|
|
|
rev = "v${version}";
|
2016-12-31 17:06:11 +00:00
|
|
|
sha256 = "1ilba872c09mnlvylslv4hqv6c9cz36l76q74rr99jvis1dg69gf";
|
2013-07-25 11:43:40 +01:00
|
|
|
};
|
|
|
|
|
2016-12-31 17:06:11 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2016-11-13 20:50:11 +00:00
|
|
|
|
2018-11-25 17:20:42 +00:00
|
|
|
buildInputs = [ ncurses libconfuse libnl ];
|
2014-09-21 23:05:52 +01:00
|
|
|
|
2013-07-25 11:43:40 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Network bandwidth monitor";
|
2014-09-21 23:05:52 +01:00
|
|
|
homepage = https://github.com/tgraf/bmon;
|
|
|
|
# Licensed unter BSD and MIT
|
|
|
|
# - https://github.com/tgraf/bmon/blob/master/LICENSE.BSD
|
|
|
|
# - https://github.com/tgraf/bmon/blob/master/LICENSE.MIT
|
2013-07-25 11:43:40 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
2014-09-21 23:05:52 +01:00
|
|
|
maintainers = with maintainers; [ bjornfor pSub ];
|
2013-07-25 11:43:40 +01:00
|
|
|
};
|
|
|
|
}
|