33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform, Security, fetchpatch }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bandwhich";
|
|
version = "0.20.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "imsnif";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "014blvrv0kk4gzga86mbk7gd5dl1szajfi972da3lrfznck1w24n";
|
|
};
|
|
|
|
cargoSha256 = "0b5pqsdggdjq9sl54rmh2gaq31va6b2crdv7ihh3198ixwasaf02";
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A CLI utility for displaying current network utilization";
|
|
longDescription = ''
|
|
bandwhich sniffs a given network interface and records IP packet size, cross
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/imsnif/bandwhich";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Br1ght0ne ma27 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|