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

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

39 lines
1011 B
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";
2023-04-29 11:20:24 +00:00
version = "1.3.0";
2020-12-27 14:27:56 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "httpx";
rev = "refs/tags/v${version}";
2023-04-29 11:20:24 +00:00
hash = "sha256-u4nftveDvwco5sZa21z4MHf/5F+M0cQUGffueeJpyL4=";
2020-12-27 14:27:56 +00:00
};
2023-04-29 11:20:24 +00:00
vendorHash = "sha256-i/Fvuy9wzXot114BI0rIbLWDW70VEaDKGThTcTZLx1M=";
2023-04-29 11:21:00 +00:00
subPackages = [ "cmd/httpx" ];
ldflags = [ "-s" "-w" ];
# 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";
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 ];
};
}