2019-05-02 23:46:41 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gd, ncurses, sqlite, check }:
|
2009-10-12 04:08:52 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-02 23:46:41 -07:00
|
|
|
pname = "vnstat";
|
2020-01-30 09:32:57 -08:00
|
|
|
version = "2.6";
|
2012-09-01 12:53:58 -07:00
|
|
|
|
2009-10-12 04:08:52 -07:00
|
|
|
src = fetchurl {
|
2020-01-30 09:32:57 -08:00
|
|
|
sha256 = "1xvzkxkq1sq33r2s4f1967f4gnca4xw411sbapdkx541f856w9w9";
|
2019-05-02 23:46:41 -07:00
|
|
|
url = "https://humdi.net/${pname}/${pname}-${version}.tar.gz";
|
2009-10-12 04:08:52 -07:00
|
|
|
};
|
|
|
|
|
2015-12-23 11:27:52 -08:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/cfg.c --replace /usr/local $out
|
|
|
|
'';
|
2009-10-12 04:08:52 -07:00
|
|
|
|
2019-05-02 23:46:41 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gd ncurses sqlite ];
|
|
|
|
|
|
|
|
checkInputs = [ check ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2015-04-27 14:10:25 -07:00
|
|
|
meta = with stdenv.lib; {
|
2015-12-23 11:27:52 -08: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.
|
|
|
|
'';
|
2018-06-27 13:12:57 -07:00
|
|
|
homepage = https://humdi.net/vnstat/;
|
2015-04-27 14:10:25 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2015-11-03 13:32:38 -08:00
|
|
|
platforms = platforms.linux;
|
2009-10-12 04:08:52 -07:00
|
|
|
};
|
|
|
|
}
|