2020-09-11 04:03:01 -07:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, Security, fetchpatch }:
|
2019-12-30 03:40:22 -08:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-12-31 00:17:28 -08:00
|
|
|
pname = "bandwhich";
|
2020-09-29 09:48:18 -07:00
|
|
|
version = "0.19.0";
|
2019-12-30 03:40:22 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "imsnif";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-09-29 09:48:18 -07:00
|
|
|
sha256 = "0963yfbf88hb5fvyckhs1vfvib5skkj9n17qibpv5vsdlynbaa96";
|
2019-12-30 03:40:22 -08:00
|
|
|
};
|
|
|
|
|
2020-09-29 09:48:18 -07:00
|
|
|
cargoSha256 = "0xp45kb0z7wiq6vnws4q7khbzslywh24sb43ssr39l1rajf7w64r";
|
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;
|
|
|
|
};
|
|
|
|
}
|