Unverified Commit 77134f22 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #234096 from figsoda/httprobe

parents e90875b0 6a800974
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };