2019-12-31 00:17:28 -08:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
2019-12-30 03:40:22 -08:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-12-31 00:17:28 -08:00
|
|
|
pname = "bandwhich";
|
2020-09-03 01:18:05 -07:00
|
|
|
version = "0.17.0";
|
2019-12-30 03:40:22 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "imsnif";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-09-03 01:18:05 -07:00
|
|
|
sha256 = "0fhy3zys41bkpjmvhkxf413004hvv2kngcgf4819mw22w14zfvgr";
|
2019-12-30 03:40:22 -08:00
|
|
|
};
|
|
|
|
|
2020-09-03 01:18:05 -07:00
|
|
|
cargoSha256 = "015ff049xb699gig0cwr5i7n8hgw1316dkdpnqd4843h54x7bp5y";
|
2019-12-30 03:40:22 -08:00
|
|
|
|
2019-12-31 00:17:28 -08:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-12-30 03:40:22 -08:00
|
|
|
description = "A CLI utility for displaying current network utilization";
|
|
|
|
longDescription = ''
|
2019-12-31 00:17:28 -08:00
|
|
|
bandwhich sniffs a given network interface and records IP packet size, cross
|
2019-12-30 03:40:22 -08:00
|
|
|
referencing it with the /proc filesystem on linux or lsof on MacOS. It is
|
|
|
|
responsive to the terminal window size, displaying less info if there is
|
|
|
|
no room for it. It will also attempt to resolve ips to their host name in
|
|
|
|
the background using reverse DNS on a best effort basis.
|
|
|
|
'';
|
2019-12-31 00:17:28 -08:00
|
|
|
homepage = "https://github.com/imsnif/bandwhich";
|
2019-12-30 03:40:22 -08:00
|
|
|
license = licenses.mit;
|
2020-01-09 12:49:53 -08:00
|
|
|
maintainers = with maintainers; [ filalex77 ma27 ];
|
2019-12-30 03:40:22 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|