{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "tlsx"; version = "1.0.3"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = pname; rev = "v${version}"; hash = "sha256-aT6CfoYm1giMJgWdUyLw/eT4vSI6k8OG6kjbYtu0lwI="; }; vendorHash = "sha256-fnBN3K1XMfrfp3l4syMFRCnzHvpX6CgUVo9qotrudaI="; # Tests require network access doCheck = false; 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"; changelog = "https://github.com/projectdiscovery/tlsx/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }