summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorOleksii Filonenko <brightone@protonmail.com>2019-12-30 13:40:22 +0200
committerOleksii Filonenko <brightone@protonmail.com>2019-12-30 13:40:22 +0200
commit014ffad4086e44f2317361d748cdca34a31bd2f5 (patch)
treea17aaff4f1a40fffe0a2404a8d9deb8dac58b10f /pkgs/tools/networking
parent4c28daa093b6cbb5905e3de00a9eb732ad2b5a21 (diff)
downloadnixpkgs-014ffad4086e44f2317361d748cdca34a31bd2f5.tar
nixpkgs-014ffad4086e44f2317361d748cdca34a31bd2f5.tar.gz
nixpkgs-014ffad4086e44f2317361d748cdca34a31bd2f5.tar.bz2
nixpkgs-014ffad4086e44f2317361d748cdca34a31bd2f5.tar.lz
nixpkgs-014ffad4086e44f2317361d748cdca34a31bd2f5.tar.xz
nixpkgs-014ffad4086e44f2317361d748cdca34a31bd2f5.tar.zst
nixpkgs-014ffad4086e44f2317361d748cdca34a31bd2f5.zip
what: init at 0.5.1
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/what/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/networking/what/default.nix b/pkgs/tools/networking/what/default.nix
new file mode 100644
index 00000000000..943ee07fd42
--- /dev/null
+++ b/pkgs/tools/networking/what/default.nix
@@ -0,0 +1,30 @@
+{ lib, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "what";
+  version = "0.5.1";
+
+  src = fetchFromGitHub {
+    owner = "imsnif";
+    repo = pname;
+    rev = version;
+    sha256 = "1q926w6c4hhf6gim6dn3jfcibgj5zbsgwnf5crmh8wv6a8fg6pxg";
+  };
+
+  cargoSha256 = "1rixpljqddwhryddzni5l6m4sjyn1krrj0ig0rzc701am7srhg3a";
+
+  meta = with lib; {
+    description = "A CLI utility for displaying current network utilization";
+    longDescription = ''
+      what 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/what";
+    license = licenses.mit;
+    maintainers = with maintainers; [ filalex77 ];
+    platforms = platforms.unix;
+  };
+}