2020-12-27 14:27:56 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-01-25 08:26:54 +00:00
|
|
|
, lib
|
2020-12-27 14:27:56 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "httpx";
|
2024-05-20 01:08:53 +00:00
|
|
|
version = "1.6.1";
|
2020-12-27 14:27:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = "httpx";
|
2023-01-16 09:17:38 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-05-20 01:08:53 +00:00
|
|
|
hash = "sha256-LW5zJqJqUD5v50OZuPqMYefrcIsjEIr7a4rogveiLA0=";
|
2020-12-27 14:27:56 +00:00
|
|
|
};
|
|
|
|
|
2024-05-20 01:08:53 +00:00
|
|
|
vendorHash = "sha256-A82eMV9MegJt3wAkK0YbyMQqt7zlX01DmZ2z3YIGrQ8=";
|
2023-01-16 09:17:38 +00:00
|
|
|
|
2023-07-25 08:59:29 +00:00
|
|
|
subPackages = [
|
|
|
|
"cmd/httpx"
|
|
|
|
];
|
2023-04-29 11:21:00 +00:00
|
|
|
|
2023-07-25 08:59:29 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
];
|
2023-04-29 11:21:00 +00:00
|
|
|
|
2023-01-16 09:17:38 +00:00
|
|
|
# Tests require network access
|
|
|
|
doCheck = false;
|
2020-12-27 14:27:56 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-27 14:27:56 +00:00
|
|
|
description = "Fast and multi-purpose HTTP toolkit";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "httpx";
|
2020-12-27 14:27:56 +00:00
|
|
|
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-16 09:17:38 +00:00
|
|
|
changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}";
|
2020-12-27 14:27:56 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|