Merge pull request #185941 from fabaff/tlsx

tlsx: init at 0.0.5
This commit is contained in:
Fabian Affolter 2022-08-11 09:09:08 +02:00 committed by GitHub
commit 25809585c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tlsx";
version = "0.0.5";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
hash = "sha256-zUaCUi7U757A8OVQHQV2LPVqu4o73qrp2xGrH7u2viA=";
};
vendorSha256 = "sha256-+pSmErlxRyDH1drri294vE+hUmlmKgh3zrKpVJVC1do=";
meta = with lib; {
description = "TLS grabber focused on TLS based data collection";
longDescription = ''
A fast and configurable TLS grabber focused on TLS based data
collection and analysis.
'';
homepage = "https://github.com/projectdiscovery/tlsx";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -11338,6 +11338,8 @@ with pkgs;
tlspool = callPackage ../tools/networking/tlspool { };
tlsx = callPackage ../tools/security/tlsx { };
tmate = callPackage ../tools/misc/tmate { };
tmate-ssh-server = callPackage ../servers/tmate-ssh-server { };