Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / networking / vnstat / default.nix
blob6eb7271d8f308ff7686c1f1a7e5ad596ee3dfe74
1 { lib, stdenv
2 , fetchFromGitHub
3 , pkg-config
4 , gd, ncurses
5 , sqlite
6 , check
7 }:
9 stdenv.mkDerivation rec {
10   pname = "vnstat";
11   version = "2.11";
13   src = fetchFromGitHub {
14     owner = "vergoh";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "sha256-IO5B+jyY6izPpam3Qt4Hu8BOGwfO10ER/GFEbsQORK0=";
18   };
20   postPatch = ''
21     substituteInPlace src/cfg.c --replace /usr/local $out
22   '';
24   nativeBuildInputs = [ pkg-config ];
25   buildInputs = [ gd ncurses sqlite ];
27   nativeCheckInputs = [ check ];
29   doCheck = true;
31   meta = with lib; {
32     description = "Console-based network statistics utility for Linux";
33     longDescription = ''
34       vnStat is a console-based network traffic monitor for Linux and BSD that
35       keeps a log of network traffic for the selected interface(s). It uses the
36       network interface statistics provided by the kernel as information source.
37       This means that vnStat won't actually be sniffing any traffic and also
38       ensures light use of system resources.
39     '';
40     homepage = "https://humdi.net/vnstat/";
41     license = licenses.gpl2Plus;
42     platforms = platforms.linux;
43     maintainers = with maintainers; [ evils ];
44   };