2020-12-29 15:07:52 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-02-05 17:12:51 +00:00
|
|
|
, lib
|
2020-12-29 15:07:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "httpx";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "1.3.4";
|
2020-12-29 15:07:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = "httpx";
|
2023-01-20 10:41:00 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-08-04 22:07:22 +00:00
|
|
|
hash = "sha256-62WOeMnnr08k8pGUTqxiZqHQJxXYqUIh+PzHvJxnJAY=";
|
2020-12-29 15:07:52 +00:00
|
|
|
};
|
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
vendorHash = "sha256-ASOheYGuvSHEz51SGUtRGCa3Cl4x+zfIfRkS3JX6vCs=";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
subPackages = [
|
|
|
|
"cmd/httpx"
|
|
|
|
];
|
2023-04-29 16:46:19 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
];
|
2023-01-20 10:41:00 +00:00
|
|
|
|
|
|
|
# Tests require network access
|
|
|
|
doCheck = false;
|
2020-12-29 15:07:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-12-29 15:07:52 +00: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";
|
2023-01-20 10:41:00 +00:00
|
|
|
changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}";
|
2020-12-29 15:07:52 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|