2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, 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
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2016-11-13 20:50:11 +00:00
|
|
|
|
2021-07-12 23:20:11 +01:00
|
|
|
buildInputs = [ ncurses libconfuse ] ++ lib.optional stdenv.isLinux libnl;
|
2014-09-21 23:05:52 +01:00
|
|
|
|
2020-10-04 18:17:59 +01:00
|
|
|
preConfigure = ''
|
|
|
|
# Must be an absolute path
|
|
|
|
export PKG_CONFIG="$(command -v "$PKG_CONFIG")"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-07-25 11:43:40 +01:00
|
|
|
description = "Network bandwidth monitor";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/tgraf/bmon";
|
2014-09-21 23:05:52 +01:00
|
|
|
# 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;
|
2021-07-12 23:20:11 +01:00
|
|
|
platforms = platforms.unix;
|
2014-09-21 23:05:52 +01:00
|
|
|
maintainers = with maintainers; [ bjornfor pSub ];
|
2013-07-25 11:43:40 +01:00
|
|
|
};
|
|
|
|
}
|