1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "tlsx";
8 version = "1.0.9";
9
10 src = fetchFromGitHub {
11 owner = "projectdiscovery";
12 repo = pname;
13 rev = "v${version}";
14 hash = "sha256-1lI4UyfUb+gXFwIfSauS/TBzEqrwQSY1UqzFDRXEBuE=";
15 };
16
17 vendorHash = "sha256-xPKdyTXu2SUU5y5bk+8gZklG6QyAEdl+8LwJizvW9+o=";
18
19 # Tests require network access
20 doCheck = false;
21
22 meta = with lib; {
23 description = "TLS grabber focused on TLS based data collection";
24 longDescription = ''
25 A fast and configurable TLS grabber focused on TLS based data
26 collection and analysis.
27 '';
28 homepage = "https://github.com/projectdiscovery/tlsx";
29 changelog = "https://github.com/projectdiscovery/tlsx/releases/tag/v${version}";
30 license = licenses.mit;
31 maintainers = with maintainers; [ fab ];
32 };
33}