mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
parent
8de9fea9ea
commit
6a800974f4
27
pkgs/tools/networking/httprobe/default.nix
Normal file
27
pkgs/tools/networking/httprobe/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -8597,6 +8597,8 @@ with pkgs;
|
||||
|
||||
httpfs2 = callPackage ../tools/filesystems/httpfs { };
|
||||
|
||||
httprobe = callPackage ../tools/networking/httprobe { };
|
||||
|
||||
httpstat = callPackage ../tools/networking/httpstat { };
|
||||
|
||||
httptunnel = callPackage ../tools/networking/httptunnel { };
|
||||
|
Loading…
Reference in New Issue
Block a user