Merge pull request #245346 from fabaff/httpx-bump

httpx: 1.3.3 -> 1.3.4
This commit is contained in:
figsoda 2023-07-25 09:28:45 -04:00 committed by GitHub
commit 6f942c2e08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,20 +5,25 @@
buildGoModule rec {
pname = "httpx";
version = "1.3.3";
version = "1.3.4";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "httpx";
rev = "refs/tags/v${version}";
hash = "sha256-VYFXxCKlVqueUk/uoD15ay+IWiFKDsBHp5WXZlajw70=";
hash = "sha256-62WOeMnnr08k8pGUTqxiZqHQJxXYqUIh+PzHvJxnJAY=";
};
vendorHash = "sha256-1WamyEnDsuyv0ijHPJthS/ZZVXKrGu8LG8w5wMVoUS0=";
vendorHash = "sha256-ASOheYGuvSHEz51SGUtRGCa3Cl4x+zfIfRkS3JX6vCs=";
subPackages = [ "cmd/httpx" ];
subPackages = [
"cmd/httpx"
];
ldflags = [ "-s" "-w" ];
ldflags = [
"-s"
"-w"
];
# Tests require network access
doCheck = false;