about summary refs log tree commit diff
path: root/pkgs/tools/networking/evillimiter
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2020-12-29 23:43:57 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2020-12-29 23:43:57 +0100
commit930637646406046d02231e03429bf49d2bf1ab92 (patch)
tree36da70b9c0f96167c18df6b173678b30e48e3d9b /pkgs/tools/networking/evillimiter
parentad13f0e569cad5ec51c3b123b434ce62c8235124 (diff)
evillimiter: init at 1.5.0
Diffstat (limited to 'pkgs/tools/networking/evillimiter')
-rw-r--r--pkgs/tools/networking/evillimiter/default.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/pkgs/tools/networking/evillimiter/default.nix b/pkgs/tools/networking/evillimiter/default.nix
new file mode 100644
index 0000000000000..20cc10728d609
--- /dev/null
+++ b/pkgs/tools/networking/evillimiter/default.nix
@@ -0,0 +1,53 @@
+{ lib
+, buildPythonApplication
+, fetchFromGitHub
+, colorama
+, iproute2
+, iptables
+, netaddr
+, netifaces
+, scapy
+, terminaltables
+, tqdm
+}:
+
+buildPythonApplication rec {
+  pname = "evillimiter";
+  version = "1.5.0";
+
+  src = fetchFromGitHub {
+    owner = "bitbrute";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1l0acd4a36wzz1gyc6mcw3zpagyi2mc425c6d4c6anq3jxwm3847";
+  };
+
+  propagatedBuildInputs = [
+    colorama
+    iproute2
+    iptables
+    netaddr
+    netifaces
+    scapy
+    terminaltables
+    tqdm
+  ];
+
+  # no tests present
+  doCheck = false;
+
+  pythonImportsCheck = [ "evillimiter.evillimiter" ];
+
+  meta = with lib; {
+    description = "Tool that monitors, analyzes and limits the bandwidth";
+    longDescription = ''
+      A tool to monitor, analyze and limit the bandwidth (upload/download) of
+      devices on your local network without physical or administrative access.
+      evillimiter employs ARP spoofing and traffic shaping to throttle the
+      bandwidth of hosts on the network.
+    '';
+    homepage = "https://github.com/bitbrute/evillimiter";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ fab ];
+  };
+}