Merge branch 'staging-next' into staging

This commit is contained in:
Jan Tojnar
2020-09-24 23:09:00 +02:00
225 changed files with 2836 additions and 1853 deletions
@@ -13,11 +13,11 @@ in
stdenv.mkDerivation rec {
pname = "1password";
version = "0.8.6-2";
version = "0.8.7";
src = fetchurl {
url = "https://onepassword.s3.amazonaws.com/linux/appimage/${pname}-${version}.AppImage";
sha256 = "1m7sql2y2kj94gr607n48m0h4b3rijyzvxrssyizv75spmxr4d5r";
sha256 = "1101q5yavzl8imf8gqa3h929gcyy6lh7dy2dw0zs52qdcrb4z49j";
};
nativeBuildInputs = [ makeWrapper ];
+4 -3
View File
@@ -1,4 +1,4 @@
{ lib
{ stdenv
, buildGoModule
, fetchFromGitHub
, pkg-config
@@ -24,9 +24,10 @@ buildGoModule rec {
doCheck = false;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libpcap libnfnetlink libnetfilter_queue libusb1 ];
buildInputs = [ libpcap libusb1 ]
++ stdenv.lib.optionals stdenv.isLinux [ libnfnetlink libnetfilter_queue ];
meta = with lib; {
meta = with stdenv.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.
+8
View File
@@ -11,8 +11,16 @@ python3.pkgs.buildPythonApplication rec {
sha256 = "11yaz8ap9swx95j3wpqh0b6jhw6spqgfnsyn1liw9zqi4jwgiax7";
};
postPatch = ''
substituteInPlace requirements.txt --replace 'dnspython==1.16.0' 'dnspython'
'';
propagatedBuildInputs = [ python3.pkgs.dns ];
# tests require network access
doCheck = false;
pythonImportsCheck = [ "fierce" ];
meta = with stdenv.lib; {
homepage = "https://github.com/mschwager/fierce";
description = "DNS reconnaissance tool for locating non-contiguous IP space";