23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "httpx";
|
|
version = "1.3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "httpx";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3k/3CJ+/17Ygj4N8KPRYiAT+QJx3RlQMNemFztKtTt4=";
|
|
};
|
|
|
|
vendorHash = "sha256-apTCSKWkAarAHDEVvyyRjBm5s5M2YDXP5bMITDLoq20=";
|
|
|
|
subPackages = [
|
|
"cmd/httpx"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
meta = with 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";
|
|
changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|