From 392bc0cfb741f05e8fcdfea9aaec7416208f7e51 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 16 Jan 2023 10:17:38 +0100 Subject: [PATCH] httpx: 1.2.4 -> 1.2.6 Diff: https://github.com/projectdiscovery/httpx/compare/refs/tags/v1.2.4...v1.2.6 Changelog: https://github.com/projectdiscovery/httpx/releases/tag/v1.2.6 --- pkgs/tools/security/httpx/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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 ]; };