{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "tlsx"; version = "1.1.3"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = pname; rev = "v${version}"; hash = "sha256-dCtMfrkN43zJqztCobT3RSkn4crGigqzI6NSP8wrCf0="; }; vendorHash = "sha256-33eVwWV9PnrP2MSPXTAcYe9ruJc5lauASc4uubBd9S4="; # 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 ]; }; }