{ buildGoModule , fetchFromGitHub , lib }: buildGoModule rec { pname = "httpx"; version = "1.2.2"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = "httpx"; rev = "v${version}"; sha256 = "sha256-DfbogRkxFiiW/UF9mKrq8x4nQvNj7D7D76/DsaTA/A0="; }; vendorSha256 = "sha256-ZI56as5eD2Q2JNc5+lv4A7ja6cbZ9kha7ofUaOAkeHg="; meta = with lib; { description = "Fast and multi-purpose HTTP toolkit"; longDescription = '' httpx is a fast and multi-purpose HTTP toolkit allow to run multiple probers using retryablehttp library, it is designed to maintain the result reliability with increased threads. ''; homepage = "https://github.com/projectdiscovery/httpx"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }