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

31 lines
814 B
Nix
Raw Normal View History

2020-12-27 14:27:56 +00:00
{ buildGoModule
, fetchFromGitHub
, lib, stdenv
2020-12-27 14:27:56 +00:00
}:
buildGoModule rec {
pname = "httpx";
version = "1.0.3";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "httpx";
rev = "v${version}";
sha256 = "15ihc5926kbai16i59c7bmvgd162qq9dpd52g4vrp7dq4jrz155m";
};
vendorSha256 = "0fg93vhwpx113fpw8qg4ram4bdh6a8x3a36pr1c962s4vhrabwy2";
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 ];
};
}