mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
32 lines
985 B
Nix
32 lines
985 B
Nix
{ stdenv, fetchurl, gd, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vnstat-${version}";
|
|
version = "1.18";
|
|
|
|
src = fetchurl {
|
|
sha256 = "1mc7qqvrnl0zyhgh8n7wx1g1cbwq74xpvbz8rfjmyi77p693a6fp";
|
|
url = "https://humdi.net/vnstat/${name}.tar.gz";
|
|
};
|
|
|
|
buildInputs = [ gd ncurses ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/cfg.c --replace /usr/local $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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.
|
|
'';
|
|
homepage = https://humdi.net/vnstat/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|