mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
a6a71a301a
Diff: https://github.com/projectdiscovery/httpx/compare/refs/tags/v1.2.6...v1.2.7 Changelog: https://github.com/projectdiscovery/httpx/releases/tag/v1.2.7
35 lines
949 B
Nix
35 lines
949 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "httpx";
|
|
version = "1.2.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "httpx";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kZU7k7vAKgQfCQobGa5i5ZnO8ARUSozv4gz93g912uM=";
|
|
};
|
|
|
|
vendorHash = "sha256-1EQt7L+dQvpBOGVHeaIOCUG960yv5h9nuQNnF4wSoug=";
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
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}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|