summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-12-31 14:23:19 +0000
committerGitHub <noreply@github.com>2019-12-31 14:23:19 +0000
commita45447a3d5f79416438db78093e7b205ba5628dd (patch)
tree6dc1c21b5a08777a196bebd5fdf67822a0fbea12 /pkgs/tools/networking
parent3238beab0a32b29eda2a63bf56e67df6e8a1f632 (diff)
parent1a477dc8954fb3e384e2f6f89d62904876f952d1 (diff)
downloadnixpkgs-a45447a3d5f79416438db78093e7b205ba5628dd.tar
nixpkgs-a45447a3d5f79416438db78093e7b205ba5628dd.tar.gz
nixpkgs-a45447a3d5f79416438db78093e7b205ba5628dd.tar.bz2
nixpkgs-a45447a3d5f79416438db78093e7b205ba5628dd.tar.lz
nixpkgs-a45447a3d5f79416438db78093e7b205ba5628dd.tar.xz
nixpkgs-a45447a3d5f79416438db78093e7b205ba5628dd.tar.zst
nixpkgs-a45447a3d5f79416438db78093e7b205ba5628dd.zip
bandwhich: init at 0.6.0 (#76689)
bandwhich: init at 0.6.0
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/bandwhich/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/networking/bandwhich/default.nix b/pkgs/tools/networking/bandwhich/default.nix
new file mode 100644
index 00000000000..21253745cb0
--- /dev/null
+++ b/pkgs/tools/networking/bandwhich/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, rustPlatform, Security }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "bandwhich";
+  version = "0.6.0";
+
+  src = fetchFromGitHub {
+    owner = "imsnif";
+    repo = pname;
+    rev = version;
+    sha256 = "0jjqc8sysvw63mwy68z9p16vc1pygrm1wxyll6piwvbbnirpys1y";
+  };
+
+  cargoSha256 = "1rixpljqddwhryddzni5l6m4sjyn1krrj0ig0rzc701am7srhg3a";
+
+  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; [ filalex77 ];
+    platforms = platforms.unix;
+  };
+}