nixpkgs/pkgs/tools/security/httpx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.0 KiB
Nix
Raw Normal View History

2020-12-27 14:27:56 +00:00
{ buildGoModule
, fetchFromGitHub
, 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";
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=";
subPackages = [
"cmd/httpx"
];
2023-04-29 11:21:00 +00:00
ldflags = [
"-s"
"-w"
];
2023-04-29 11:21:00 +00:00
# Tests require network access
doCheck = false;
2020-12-27 14:27:56 +00:00
meta = with lib; {
2020-12-27 14:27:56 +00:00
description = "Fast and multi-purpose HTTP toolkit";
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";
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 ];
};
}