4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ lib, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libpcap
|
|
, libnfnetlink
|
|
, libnetfilter_queue
|
|
, libusb1
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bettercap";
|
|
version = "2.28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0aihinn3i3jj350l2rqph7nv3wy4nh4f8syidf77zybjcp9nmcys";
|
|
};
|
|
|
|
vendorSha256 = "0yfs1f18d8frbkrshsajzzbj4wh2azd89g2h35wm6wqknvlipwr0";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libpcap libusb1 ]
|
|
++ stdenv.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; gpl3;
|
|
maintainers = with maintainers; [ y0no ];
|
|
};
|
|
}
|