about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-02-24 18:41:14 +0100
committerMichael Weiss <dev.primeos@gmail.com>2020-02-24 18:46:29 +0100
commitee8935d6356cd7c545cf626e4bd6e1ef54d9616a (patch)
tree6fb589d48086a79204f7372a938d1790bcdbf8e2 /pkgs/applications/networking
parentf5d2675512dbd267c7f026419f16b3c2e46ab4f9 (diff)
downloadnixlib-ee8935d6356cd7c545cf626e4bd6e1ef54d9616a.tar
nixlib-ee8935d6356cd7c545cf626e4bd6e1ef54d9616a.tar.gz
nixlib-ee8935d6356cd7c545cf626e4bd6e1ef54d9616a.tar.bz2
nixlib-ee8935d6356cd7c545cf626e4bd6e1ef54d9616a.tar.lz
nixlib-ee8935d6356cd7c545cf626e4bd6e1ef54d9616a.tar.xz
nixlib-ee8935d6356cd7c545cf626e4bd6e1ef54d9616a.tar.zst
nixlib-ee8935d6356cd7c545cf626e4bd6e1ef54d9616a.zip
ettercap: Switch to OpenSSL 1.1.1
I noticed that Ettercap was listed in #80746.
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/sniffers/ettercap/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/applications/networking/sniffers/ettercap/default.nix b/pkgs/applications/networking/sniffers/ettercap/default.nix
index 38b7f1c1740c..c548098baa7e 100644
--- a/pkgs/applications/networking/sniffers/ettercap/default.nix
+++ b/pkgs/applications/networking/sniffers/ettercap/default.nix
@@ -35,7 +35,14 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Comprehensive suite for man in the middle attacks";
-    homepage = http://ettercap.github.io/ettercap/;
+    longDescription = ''
+      Ettercap is a comprehensive suite for man in the middle attacks. It
+      features sniffing of live connections, content filtering on the fly and
+      many other interesting tricks. It supports active and passive dissection
+      of many protocols and includes many features for network and host
+      analysis.
+    '';
+    homepage = https://www.ettercap-project.org/;
     license = licenses.gpl2;
     platforms = platforms.unix;
     maintainers = with maintainers; [ pSub ];