Merge pull request #313027 from r-ryantm/auto-update/httpx

httpx: 1.6.0 -> 1.6.1

authored by Fabian Affolter and committed by GitHub 318ef286 bf602288

+9 -10
+9 -10
pkgs/tools/security/httpx/default.nix
··· 1 - { buildGoModule 2 - , fetchFromGitHub 3 - , lib 4 }: 5 6 buildGoModule rec { 7 pname = "httpx"; 8 - version = "1.6.0"; 9 10 src = fetchFromGitHub { 11 owner = "projectdiscovery"; 12 repo = "httpx"; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-q8R3X1U2Dma0A9WRWIFPSRQHndNJFE2YdfMyPEM6dr8="; 15 }; 16 17 - vendorHash = "sha256-M7oxM0hMaOT78CxbSGyYk0nhGJC8dLWAlzi/b//EiHw="; 18 19 - subPackages = [ 20 - "cmd/httpx" 21 - ]; 22 23 ldflags = [ 24 "-s" ··· 30 31 meta = with lib; { 32 description = "Fast and multi-purpose HTTP toolkit"; 33 - mainProgram = "httpx"; 34 longDescription = '' 35 httpx is a fast and multi-purpose HTTP toolkit allow to run multiple 36 probers using retryablehttp library, it is designed to maintain the ··· 40 changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}"; 41 license = licenses.mit; 42 maintainers = with maintainers; [ fab ]; 43 }; 44 }
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 }: 6 7 buildGoModule rec { 8 pname = "httpx"; 9 + version = "1.6.1"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "httpx"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-LW5zJqJqUD5v50OZuPqMYefrcIsjEIr7a4rogveiLA0="; 16 }; 17 18 + vendorHash = "sha256-A82eMV9MegJt3wAkK0YbyMQqt7zlX01DmZ2z3YIGrQ8="; 19 20 + subPackages = [ "cmd/httpx" ]; 21 22 ldflags = [ 23 "-s" ··· 29 30 meta = with lib; { 31 description = "Fast and multi-purpose HTTP toolkit"; 32 longDescription = '' 33 httpx is a fast and multi-purpose HTTP toolkit allow to run multiple 34 probers using retryablehttp library, it is designed to maintain the ··· 38 changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ fab ]; 41 + mainProgram = "httpx"; 42 }; 43 }