Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
622 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
mainProgram = "httprobe";
};
}