44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, ncurses
|
|
, autoreconfHook
|
|
, lib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cbm";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "resurrecting-open-source-projects";
|
|
repo = "cbm";
|
|
rev = "b6bc84bd9702d711466348a7af5c25d4c4f0bbf5";
|
|
sha256 = "sha256-rL9ttGK4CIPFHXmNBgVq1QzLkMDGtgF+1eoCH1bwvG0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A small pogram to display network traffic of interfaces in realtime";
|
|
longDescription = ''
|
|
Simple curses-based GUI.
|
|
|
|
It is useful for Internet or LAN speed tests, measuring the velocity of a link, to establish a benchmark or to monitor your connections.
|
|
|
|
CBM can be used with virtual, wired or wireless networks.
|
|
|
|
Originally imported from some tarballs from the Debian Project: http://snapshot.debian.org/package/cbm/. Now maintained by volunteers.
|
|
'';
|
|
homepage = "https://github.com/resurrecting-open-source-projects/cbm";
|
|
license = licenses.gpl2Only;
|
|
#maintainers = [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|