2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gd, ncurses, sqlite, check }:
|
2009-10-12 11:08:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-03 06:46:41 +00:00
|
|
|
pname = "vnstat";
|
2020-01-30 17:32:57 +00:00
|
|
|
version = "2.6";
|
2012-09-01 19:53:58 +00:00
|
|
|
|
2009-10-12 11:08:52 +00:00
|
|
|
src = fetchurl {
|
2020-01-30 17:32:57 +00:00
|
|
|
sha256 = "1xvzkxkq1sq33r2s4f1967f4gnca4xw411sbapdkx541f856w9w9";
|
2019-05-03 06:46:41 +00:00
|
|
|
url = "https://humdi.net/${pname}/${pname}-${version}.tar.gz";
|
2009-10-12 11:08:52 +00:00
|
|
|
};
|
|
|
|
|
2015-12-23 19:27:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/cfg.c --replace /usr/local $out
|
|
|
|
'';
|
2009-10-12 11:08:52 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-05-03 06:46:41 +00:00
|
|
|
buildInputs = [ gd ncurses sqlite ];
|
|
|
|
|
|
|
|
checkInputs = [ check ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-12-23 19:27:52 +00:00
|
|
|
description = "Console-based network statistics utility for Linux";
|
|
|
|
longDescription = ''
|
|
|
|
vnStat is a console-based network traffic monitor for Linux and BSD that
|
|
|
|
keeps a log of network traffic for the selected interface(s). It uses the
|
|
|
|
network interface statistics provided by the kernel as information source.
|
|
|
|
This means that vnStat won't actually be sniffing any traffic and also
|
|
|
|
ensures light use of system resources.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://humdi.net/vnstat/";
|
2015-04-27 21:10:25 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-11-03 21:32:38 +00:00
|
|
|
platforms = platforms.linux;
|
2009-10-12 11:08:52 +00:00
|
|
|
};
|
|
|
|
}
|