biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / httprobe / default.nix
blobb1a03ed6b488a4068341ed35d146012055c6520e
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "httprobe";
8   version = "0.2";
10   src = fetchFromGitHub {
11     owner = "tomnomnom";
12     repo = "httprobe";
13     rev = "v${version}";
14     hash = "sha256-k/Ev+zpYF+DcnQvMbbRzoJ4co83q3pi/D9T4DhtGR/I=";
15   };
17   vendorHash = null;
19   ldflags = [ "-s" "-w" ];
21   meta = with lib; {
22     description = "Take a list of domains and probe for working HTTP and HTTPS servers";
23     homepage = "https://github.com/tomnomnom/httprobe";
24     license = licenses.mit;
25     maintainers = with maintainers; [ figsoda ];
26     mainProgram = "httprobe";
27   };