depot/third_party/nixpkgs/pkgs/tools/networking/httprobe/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

27 lines
577 B
Nix

{ 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 ];
};
}