about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-16 10:17:38 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-01-16 10:19:27 +0100
commit392bc0cfb741f05e8fcdfea9aaec7416208f7e51 (patch)
tree31c50e481e317da8d02a4091dacb1da6f7a12383 /pkgs/tools/security
parent7003e5afc100e96195d01f27f596b9bc32f329b8 (diff)
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
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/httpx/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/tools/security/httpx/default.nix b/pkgs/tools/security/httpx/default.nix
index de7060e69f19a..7b26825b70c91 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 ];
   };