lol

Merge pull request #185941 from fabaff/tlsx

tlsx: init at 0.0.5

authored by

Fabian Affolter and committed by
GitHub
25809585 12fe266d

+31
+29
pkgs/tools/security/tlsx/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "tlsx"; 8 + version = "0.0.5"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "projectdiscovery"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-zUaCUi7U757A8OVQHQV2LPVqu4o73qrp2xGrH7u2viA="; 15 + }; 16 + 17 + vendorSha256 = "sha256-+pSmErlxRyDH1drri294vE+hUmlmKgh3zrKpVJVC1do="; 18 + 19 + meta = with lib; { 20 + description = "TLS grabber focused on TLS based data collection"; 21 + longDescription = '' 22 + A fast and configurable TLS grabber focused on TLS based data 23 + collection and analysis. 24 + ''; 25 + homepage = "https://github.com/projectdiscovery/tlsx"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ fab ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 11338 11338 11339 11339 tlspool = callPackage ../tools/networking/tlspool { }; 11340 11340 11341 + tlsx = callPackage ../tools/security/tlsx { }; 11342 + 11341 11343 tmate = callPackage ../tools/misc/tmate { }; 11342 11344 11343 11345 tmate-ssh-server = callPackage ../servers/tmate-ssh-server { };