571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, buildGo122Module
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libpcap
|
|
, libnfnetlink
|
|
, libnetfilter_queue
|
|
, libusb1
|
|
}:
|
|
|
|
buildGo122Module rec {
|
|
pname = "bettercap";
|
|
version = "2.32.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-OND8WPqU/95rKykqMAPWmDsJ+AjsjGjrncZ2/m3mpt0=";
|
|
};
|
|
|
|
vendorHash = "sha256-QKv8F9QLRi+1Bqj9KywJsTErjs7o6gFM4tJLA8y52MY=";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libpcap libusb1 ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ libnfnetlink libnetfilter_queue ];
|
|
|
|
meta = with lib; {
|
|
description = "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 ];
|
|
mainProgram = "bettercap";
|
|
};
|
|
}
|