tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
httprobe: init at 0.2
https://github.com/tomnomnom/httprobe
figsoda
2 years ago
6a800974
8de9fea9
+29
2 changed files
expand all
collapse all
unified
split
pkgs
tools
networking
httprobe
default.nix
top-level
all-packages.nix
+27
pkgs/tools/networking/httprobe/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, buildGoModule
3
+
, fetchFromGitHub
4
+
}:
5
+
6
+
buildGoModule rec {
7
+
pname = "httprobe";
8
+
version = "0.2";
9
+
10
+
src = fetchFromGitHub {
11
+
owner = "tomnomnom";
12
+
repo = "httprobe";
13
+
rev = "v${version}";
14
+
hash = "sha256-k/Ev+zpYF+DcnQvMbbRzoJ4co83q3pi/D9T4DhtGR/I=";
15
+
};
16
+
17
+
vendorHash = null;
18
+
19
+
ldflags = [ "-s" "-w" ];
20
+
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
+
};
27
+
}
+2
pkgs/top-level/all-packages.nix
···
8597
8598
httpfs2 = callPackage ../tools/filesystems/httpfs { };
8599
0
0
8600
httpstat = callPackage ../tools/networking/httpstat { };
8601
8602
httptunnel = callPackage ../tools/networking/httptunnel { };
···
8597
8598
httpfs2 = callPackage ../tools/filesystems/httpfs { };
8599
8600
+
httprobe = callPackage ../tools/networking/httprobe { };
8601
+
8602
httpstat = callPackage ../tools/networking/httpstat { };
8603
8604
httptunnel = callPackage ../tools/networking/httptunnel { };