2023-10-09 19:29:22 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "bandwhich";
|
2024-02-07 01:22:34 +00:00
|
|
|
version = "0.22.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "imsnif";
|
|
|
|
repo = pname;
|
2023-10-09 19:29:22 +00:00
|
|
|
rev = "v${version}";
|
2024-02-07 01:22:34 +00:00
|
|
|
hash = "sha256-/uG1xjhxnIkS3rq7Tv1q1v8X7p1baDB8OiSEV9OLyfo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
|
|
"packet-builder-0.7.0" = "sha256-KxNrnLZ/z3JJ3E1pCTJF9tNXI7XYNRc6ooTUz3avpjw=";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
checkFlags = [
|
|
|
|
# failing in upstream CI
|
|
|
|
"--skip=tests::cases::ui::layout_under_50_width_under_50_height"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-08-08 23:34:03 +00:00
|
|
|
# 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
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;
|
2023-08-04 22:07:22 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne figsoda ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|