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

31 lines
804 B
Nix
Raw Normal View History

2020-12-27 15:27:56 +01:00
{ buildGoModule
, fetchFromGitHub
, lib
2020-12-27 15:27:56 +01:00
}:
buildGoModule rec {
pname = "httpx";
2022-01-11 11:08:49 +01:00
version = "1.1.5";
2020-12-27 15:27:56 +01:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "httpx";
rev = "v${version}";
2022-01-11 11:08:49 +01:00
sha256 = "sha256-XA099gBp52g0RUbbFSE8uFa7gh56bO8H66KaFAtK1RU=";
2020-12-27 15:27:56 +01:00
};
2022-01-30 20:24:36 +01:00
vendorSha256 = "sha256-Qx0QaPKpEq4U+G3qdfMN4EVyY5zI2SyzcK/U6o6loHE=";
2020-12-27 15:27:56 +01:00
meta = with lib; {
2020-12-27 15:27:56 +01: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 ];
};
}