rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / bandwhich / default.nix
blob43da60ffb89d7e23581c4ab6dc1f4faf5b66cd9e
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
3 rustPlatform.buildRustPackage rec {
4   pname = "bandwhich";
5   version = "0.22.2";
7   src = fetchFromGitHub {
8     owner = "imsnif";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-/uG1xjhxnIkS3rq7Tv1q1v8X7p1baDB8OiSEV9OLyfo=";
12   };
14   cargoLock = {
15     lockFile = ./Cargo.lock;
16     outputHashes = {
17       "packet-builder-0.7.0" = "sha256-KxNrnLZ/z3JJ3E1pCTJF9tNXI7XYNRc6ooTUz3avpjw=";
18     };
19   };
21   checkFlags = [
22     # failing in upstream CI
23     "--skip=tests::cases::ui::layout_under_50_width_under_50_height"
24   ];
26   nativeBuildInputs = [ installShellFiles ];
28   buildInputs = lib.optional stdenv.isDarwin Security;
30   # 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1
31   doCheck = !stdenv.isDarwin;
33   preConfigure = ''
34     export BANDWHICH_GEN_DIR=_shell-files
35     mkdir -p $BANDWHICH_GEN_DIR
36   '';
38   postInstall = ''
39     installManPage $BANDWHICH_GEN_DIR/bandwhich.1
41     installShellCompletion $BANDWHICH_GEN_DIR/bandwhich.{bash,fish} \
42       --zsh $BANDWHICH_GEN_DIR/_bandwhich
43   '';
45   meta = with lib; {
46     description = "A CLI utility for displaying current network utilization";
47     longDescription = ''
48       bandwhich sniffs a given network interface and records IP packet size, cross
49       referencing it with the /proc filesystem on linux or lsof on MacOS. It is
50       responsive to the terminal window size, displaying less info if there is
51       no room for it. It will also attempt to resolve ips to their host name in
52       the background using reverse DNS on a best effort basis.
53     '';
54     homepage = "https://github.com/imsnif/bandwhich";
55     changelog = "https://github.com/imsnif/bandwhich/blob/${src.rev}/CHANGELOG.md";
56     license = licenses.mit;
57     maintainers = with maintainers; [ Br1ght0ne figsoda ];
58     platforms = platforms.unix;
59     mainProgram = "bandwhich";
60   };