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

31 lines
804 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";
2021-06-01 11:45:21 +00:00
version = "1.0.9";
2020-12-27 14:27:56 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "httpx";
rev = "v${version}";
2021-06-01 11:45:21 +00:00
sha256 = "sha256-WUaDL1bMZ7rjlwyaqZraIKSrxj68PZiuIpgZN8l8nIo=";
2020-12-27 14:27:56 +00:00
};
2021-05-26 08:04:59 +00:00
vendorSha256 = "sha256-yk94jD8gwgmEroxg7vzfaISVakMv3+tUoq+Auas751w=";
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";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}