2021-05-17 14:57:38 +02:00
|
|
|
{ lib, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, gd, ncurses
|
|
|
|
, sqlite
|
|
|
|
, check
|
|
|
|
}:
|
2009-10-12 13:08:52 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-03 08:46:41 +02:00
|
|
|
pname = "vnstat";
|
2021-05-17 14:57:38 +02:00
|
|
|
version = "2.7";
|
2012-09-01 21:53:58 +02:00
|
|
|
|
2021-05-17 14:57:38 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vergoh";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "105krrc7hl5mbj89i1k3w8yzqrg4f0q96lmyv4rc7fhhds5zam2h";
|
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
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-05-03 08:46:41 +02:00
|
|
|
buildInputs = [ gd ncurses sqlite ];
|
|
|
|
|
|
|
|
checkInputs = [ check ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
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.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://humdi.net/vnstat/";
|
2015-04-27 23:10:25 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2015-11-03 22:32:38 +01:00
|
|
|
platforms = platforms.linux;
|
2021-05-17 14:57:38 +02:00
|
|
|
maintainers = with maintainers; [ evils ];
|
2009-10-12 13:08:52 +02:00
|
|
|
};
|
|
|
|
}
|