Merge pull request #234096 from figsoda/httprobe

This commit is contained in:
figsoda 2023-05-27 21:52:50 -04:00 committed by GitHub
commit 77134f22bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "httprobe";
version = "0.2";
src = fetchFromGitHub {
owner = "tomnomnom";
repo = "httprobe";
rev = "v${version}";
hash = "sha256-k/Ev+zpYF+DcnQvMbbRzoJ4co83q3pi/D9T4DhtGR/I=";
};
vendorHash = null;
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Take a list of domains and probe for working HTTP and HTTPS servers";
homepage = "https://github.com/tomnomnom/httprobe";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -8609,6 +8609,8 @@ with pkgs;
httpfs2 = callPackage ../tools/filesystems/httpfs { };
httprobe = callPackage ../tools/networking/httprobe { };
httpstat = callPackage ../tools/networking/httpstat { };
httptunnel = callPackage ../tools/networking/httptunnel { };