2020-12-27 15:27:56 +01:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-01-25 09:26:54 +01:00
|
|
|
, lib
|
2020-12-27 15:27:56 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "httpx";
|
2022-08-01 16:54:53 +02:00
|
|
|
version = "1.2.4";
|
2020-12-27 15:27:56 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = "httpx";
|
|
|
|
rev = "v${version}";
|
2022-08-01 16:54:53 +02:00
|
|
|
sha256 = "sha256-w4VELxmahqjfiMGXflSnhp5NKPi3HUucjxEUegljbVY=";
|
2020-12-27 15:27:56 +01:00
|
|
|
};
|
|
|
|
|
2022-08-01 16:54:53 +02:00
|
|
|
vendorSha256 = "sha256-9zLZyXrLvxwwkTwtpKxdGftzCZISZ/al98VnPiaMqGA=";
|
2020-12-27 15:27:56 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-12-27 15:27:56 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|