diff --git a/pkgs/tools/security/httpx/default.nix b/pkgs/tools/security/httpx/default.nix index de7060e69f19..7b26825b70c9 100644 --- a/pkgs/tools/security/httpx/default.nix +++ b/pkgs/tools/security/httpx/default.nix @@ -5,16 +5,19 @@ buildGoModule rec { pname = "httpx"; - version = "1.2.4"; + version = "1.2.6"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = "httpx"; - rev = "v${version}"; - sha256 = "sha256-w4VELxmahqjfiMGXflSnhp5NKPi3HUucjxEUegljbVY="; + rev = "refs/tags/v${version}"; + hash = "sha256-XGKz4Y04EpfJGkEfUE20Egv9dFiSEHOpDcQ2OfJ9wu8="; }; - vendorSha256 = "sha256-9zLZyXrLvxwwkTwtpKxdGftzCZISZ/al98VnPiaMqGA="; + vendorHash = "sha256-PsASCNHR52E4TSIK5s0ReJptKcondq39Dn2PsMQ8laA="; + + # Tests require network access + doCheck = false; meta = with lib; { description = "Fast and multi-purpose HTTP toolkit"; @@ -24,6 +27,7 @@ buildGoModule rec { result reliability with increased threads. ''; homepage = "https://github.com/projectdiscovery/httpx"; + changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };