nixpkgs/pkgs/tools/networking/bandwhich/default.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, fetchpatch }:
2019-12-30 11:40:22 +00:00
rustPlatform.buildRustPackage rec {
pname = "bandwhich";
2020-10-17 17:06:59 +00:00
version = "0.20.0";
2019-12-30 11:40:22 +00:00
src = fetchFromGitHub {
owner = "imsnif";
repo = pname;
rev = version;
2020-10-17 17:06:59 +00:00
sha256 = "014blvrv0kk4gzga86mbk7gd5dl1szajfi972da3lrfznck1w24n";
2019-12-30 11:40:22 +00:00
};
cargoSha256 = "119szaighki565w28la6qg25s3cv8wviqin9f7f9w8x2rif3ipb3";
2019-12-30 11:40:22 +00:00
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {
2019-12-30 11:40:22 +00:00
description = "A CLI utility for displaying current network utilization";
longDescription = ''
bandwhich sniffs a given network interface and records IP packet size, cross
2019-12-30 11:40:22 +00: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.
'';
homepage = "https://github.com/imsnif/bandwhich";
2019-12-30 11:40:22 +00:00
license = licenses.mit;
maintainers = with maintainers; [ Br1ght0ne ma27 ];
2019-12-30 11:40:22 +00:00
platforms = platforms.unix;
};
}