tlsx: init at 0.0.5

This commit is contained in:
Fabian Affolter 2022-08-10 18:45:44 +02:00
parent ee3be6b246
commit ede0203d33
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

@ -11331,6 +11331,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 { };