httpx: init at 1.0.3
This commit is contained in:
parent
c7f75838c3
commit
0bb9615b32
30
pkgs/tools/security/httpx/default.nix
Normal file
30
pkgs/tools/security/httpx/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "httpx";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "projectdiscovery";
|
||||
repo = "httpx";
|
||||
rev = "v${version}";
|
||||
sha256 = "15ihc5926kbai16i59c7bmvgd162qq9dpd52g4vrp7dq4jrz155m";
|
||||
};
|
||||
|
||||
vendorSha256 = "0fg93vhwpx113fpw8qg4ram4bdh6a8x3a36pr1c962s4vhrabwy2";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Fast and multi-purpose HTTP toolkit";
|
||||
longDescription = ''
|
||||
httpx is a fast and multi-purpose HTTP toolkit allow to run multiple
|
||||
probers using retryablehttp library, it is designed to maintain the
|
||||
result reliability with increased threads.
|
||||
'';
|
||||
homepage = "https://github.com/projectdiscovery/httpx";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4752,6 +4752,8 @@ in
|
||||
|
||||
httptunnel = callPackage ../tools/networking/httptunnel { };
|
||||
|
||||
httpx = callPackage ../tools/security/httpx { };
|
||||
|
||||
hubicfuse = callPackage ../tools/filesystems/hubicfuse { };
|
||||
|
||||
humanfriendly = with python3Packages; toPythonApplication humanfriendly;
|
||||
|
Loading…
Reference in New Issue
Block a user