bettercap: init at 1.6.2 (#33902)

This commit is contained in:
y0no
2018-01-16 07:40:49 +00:00
committed by Jörg Thalheim
parent ca12e1c088
commit 7e0402632d
6 changed files with 191 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ lib, bundlerEnv, ruby, libpcap}:
bundlerEnv rec {
name = "bettercap-${version}";
version = (import gemset).bettercap.version;
inherit ruby;
gemdir = ./.;
gemset = ./gemset.nix;
buildInputs = [ libpcap ruby ];
meta = with lib; {
description = "A man in the middle tool";
longDescription = ''
BetterCAP is a powerful, flexible and portable tool created to perform various types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic in realtime, sniff for credentials and much more.
'' ;
homepage = https://www.bettercap.org/;
license = with licenses; gpl3;
maintainers = with maintainers; [ y0no ];
platforms = platforms.all;
};
}