mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ lib, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libpcap
|
|
, libnfnetlink
|
|
, libnetfilter_queue
|
|
, libusb1
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bettercap";
|
|
version = "2.31.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PmS4ox1ZaHrBGJAdNByott61rEvfmR1ZJ12ut0MGtrc=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-3j64Z4BQhAbUtoHJ6IT1SCsKxSeYZRxSO3K2Nx9Vv4w=";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libpcap libusb1 ]
|
|
++ lib.optionals stdenv.isLinux [ libnfnetlink libnetfilter_queue ];
|
|
|
|
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; [ gpl3Only ];
|
|
maintainers = with maintainers; [ y0no ];
|
|
};
|
|
}
|