nixpkgs/pkgs/tools/security/bettercap/default.nix

31 lines
981 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, libpcap, libnfnetlink, libnetfilter_queue }:
2018-01-16 07:40:49 +00:00
buildGoPackage rec {
2018-01-16 07:40:49 +00:00
name = "bettercap-${version}";
version = "2.4";
2018-01-16 07:40:49 +00:00
goPackagePath = "github.com/bettercap/bettercap";
2018-01-16 07:40:49 +00:00
src = fetchFromGitHub {
owner = "bettercap";
repo = "bettercap";
rev = "v${version}";
sha256 = "1k1ank8z9sr3vxm86dfcrn1y3qa3gfwyb2z0fvkvi38gc88pfljb";
};
buildInputs = [libpcap libnfnetlink libnetfilter_queue pkgconfig];
goDeps = ./deps.nix;
2018-01-16 07:40:49 +00:00
meta = with stdenv.lib; {
2018-01-16 07:40:49 +00:00
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;
};
}