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

42 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv
, buildGoModule
, fetchFromGitHub
, pkg-config
, libpcap
, libnfnetlink
, libnetfilter_queue
, libusb1
}:
2018-01-16 07:40:49 +00:00
buildGoModule rec {
pname = "bettercap";
2021-05-23 06:38:14 +00:00
version = "2.31.1";
2018-01-16 07:40:49 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2021-05-23 06:38:14 +00:00
sha256 = "sha256-vZajnKjuIFoNnjxSsFkkpxyCR27VWqVN4lGf9SadmPU=";
};
2021-05-23 06:38:14 +00:00
vendorSha256 = "sha256-et6D+M+xJbxIiDP7JRRABZ8UqUCpt9ZVI5DP45tyTGM=";
doCheck = false;
nativeBuildInputs = [ pkg-config ];
2020-09-20 21:56:23 +00:00
buildInputs = [ libpcap libusb1 ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isLinux [ libnfnetlink libnetfilter_queue ];
2018-01-16 07:40:49 +00:00
meta = with lib; {
2018-01-16 07:40:49 +00:00
description = "A man in the middle tool";
longDescription = ''
2021-04-22 09:03:17 +00:00
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/";
2021-04-22 09:03:17 +00:00
license = with licenses; [ gpl3Only ];
2018-01-16 07:40:49 +00:00
maintainers = with maintainers; [ y0no ];
};
}