2015-12-23 20:29:57 +01:00
|
|
|
{ stdenv, fetchurl, gd, ncurses }:
|
2009-10-12 13:08:52 +02:00
|
|
|
|
2015-12-23 20:27:52 +01:00
|
|
|
let version = "1.15"; in
|
2009-10-12 13:08:52 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-27 23:10:25 +02:00
|
|
|
name = "vnstat-${version}";
|
2012-09-01 21:53:58 +02:00
|
|
|
|
2009-10-12 13:08:52 +02:00
|
|
|
src = fetchurl {
|
2015-12-23 20:27:52 +01:00
|
|
|
sha256 = "0fdw3nbrfm4acv48r0934ls6ld5lwkff3gyym2c72qlbm9dlp0f3";
|
2012-09-01 21:53:58 +02:00
|
|
|
url = "http://humdi.net/vnstat/${name}.tar.gz";
|
2009-10-12 13:08:52 +02:00
|
|
|
};
|
|
|
|
|
2015-12-23 20:29:57 +01:00
|
|
|
buildInputs = [ gd ncurses ];
|
2009-10-12 13:08:52 +02:00
|
|
|
|
2015-12-23 20:27:52 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/cfg.c --replace /usr/local $out
|
|
|
|
'';
|
2009-10-12 13:08:52 +02:00
|
|
|
|
2015-04-27 23:10:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit version;
|
2015-12-23 20:27:52 +01: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.
|
|
|
|
'';
|
2009-10-12 13:08:52 +02:00
|
|
|
homepage = http://humdi.net/vnstat/;
|
2015-04-27 23:10:25 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
2015-11-03 22:32:38 +01:00
|
|
|
platforms = platforms.linux;
|
2009-10-12 13:08:52 +02:00
|
|
|
};
|
|
|
|
}
|