2015-12-23 19:29:57 +00:00
|
|
|
{ stdenv, fetchurl, gd, ncurses }:
|
2009-10-12 11:08:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-27 21:10:25 +00:00
|
|
|
name = "vnstat-${version}";
|
2018-03-15 19:26:32 +00:00
|
|
|
version = "1.18";
|
2012-09-01 19:53:58 +00:00
|
|
|
|
2009-10-12 11:08:52 +00:00
|
|
|
src = fetchurl {
|
2018-03-15 19:26:32 +00:00
|
|
|
sha256 = "1mc7qqvrnl0zyhgh8n7wx1g1cbwq74xpvbz8rfjmyi77p693a6fp";
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://humdi.net/vnstat/${name}.tar.gz";
|
2009-10-12 11:08:52 +00:00
|
|
|
};
|
|
|
|
|
2015-12-23 19:29:57 +00:00
|
|
|
buildInputs = [ gd ncurses ];
|
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
|
|
|
|
2015-04-27 21:10:25 +00:00
|
|
|
meta = with stdenv.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.
|
|
|
|
'';
|
2018-06-27 20:12:57 +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
|
|
|
};
|
|
|
|
}
|