Merge remote-tracking branch 'nixpkgs/master' into staging-next

Conflicts:
	pkgs/development/python-modules/pyvex/default.nix
	pkgs/top-level/python-packages.nix
This commit is contained in:
Alyssa Ross
2021-04-23 13:49:12 +00:00
37 changed files with 1245 additions and 1658 deletions
+7 -5
View File
@@ -10,16 +10,16 @@
buildGoModule rec {
pname = "bettercap";
version = "2.30.2";
version = "2.31.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-5CAWMW0u/8BUn/8JJBApyHGH+/Tz8hzAmSChoT2gFr8=";
sha256 = "sha256-PmS4ox1ZaHrBGJAdNByott61rEvfmR1ZJ12ut0MGtrc=";
};
vendorSha256 = "sha256-fApxHxdzEEc+M+U5f0271VgrkXTGkUD75BpDXpVYd5k=";
vendorSha256 = "sha256-3j64Z4BQhAbUtoHJ6IT1SCsKxSeYZRxSO3K2Nx9Vv4w=";
doCheck = false;
@@ -30,10 +30,12 @@ buildGoModule rec {
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.
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;
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ y0no ];
};
}