nixpkgs/pkgs/tools/networking/bwm-ng/default.nix

53 lines
2 KiB
Nix
Raw Normal View History

2013-08-14 11:00:59 +00:00
{ stdenv, fetchurl, ncurses }:
2015-09-25 13:33:42 +00:00
let
version = "0.6.1";
in
2013-08-14 11:00:59 +00:00
stdenv.mkDerivation rec {
2015-09-25 13:33:42 +00:00
name = "bwm-ng-${version}";
2013-08-14 11:00:59 +00:00
src = fetchurl {
url = "http://www.gropp.org/bwm-ng/${name}.tar.gz";
2015-09-25 13:30:59 +00:00
sha256 = "1w0dwpjjm9pqi613i8glxrgca3rdyqyp3xydzagzr5ndc34z6z02";
2013-08-14 11:00:59 +00:00
};
2015-05-14 21:49:02 +00:00
2013-08-14 11:00:59 +00:00
buildInputs = [ ncurses ];
2015-05-14 21:49:02 +00:00
# This code uses inline in the gnu89 sense: see http://clang.llvm.org/compatibility.html#inline
NIX_CFLAGS_COMPILE = if stdenv.cc.isClang then "-std=gnu89" else null;
2013-08-14 11:00:59 +00:00
meta = with stdenv.lib; {
description = "A small and simple console-based live network and disk io bandwidth monitor";
2013-08-14 11:00:59 +00:00
homepage = "http://www.gropp.org/?id=projects&sub=bwm-ng";
license = licenses.gpl2;
platforms = platforms.unix;
longDescription = ''
Features
supports /proc/net/dev, netstat, getifaddr, sysctl, kstat, /proc/diskstats /proc/partitions, IOKit, devstat and libstatgrab
unlimited number of interfaces/devices supported
interfaces/devices are added or removed dynamically from list
white-/blacklist of interfaces/devices
output of KB/s, Kb/s, packets, errors, average, max and total sum
output in curses, plain console, CSV or HTML
configfile
Short list of changes since 0.5 (for full list read changelog):
curses2 output, a nice bar chart
disk input for bsd/macosx/linux/solaris
win32 network bandwidth support
moved to autotools
alot fixes
Info
This was influenced by the old bwm util written by Barney (barney@freewill.tzo.com) which had some issues with faster interfaces and was very simple. Since i had almost all code done anyway for other projects, i decided to create my own version.
I actually don't know if netstat input is useful at all. I saw this elsewhere, so i added it. Its target is "netstat 1.42 (2001-04-15)" linux or Free/Open/netBSD. If there are other formats i would be happy to add them.
2015-09-25 13:33:42 +00:00
2013-08-14 11:00:59 +00:00
(from homepage)
'';
};
}