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