Skip to content

Commit ddde37c

Browse files
authored
tlsinfo: init at 0.1.41 (#349951)
2 parents a90028c + a7ad1c1 commit ddde37c

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
}:
6+
7+
buildGoModule rec {
8+
pname = "tlsinfo";
9+
version = "0.1.41";
10+
11+
src = fetchFromGitHub {
12+
owner = "paepckehh";
13+
repo = "tlsinfo";
14+
rev = "refs/tags/v${version}";
15+
hash = "sha256-II5/UDWVeEoupM1Ijty2A9M/qwWA2/b4Y68lTkxnJ9o=";
16+
};
17+
18+
vendorHash = "sha256-IyinAjgK4vm+TkSGQq+XnY9BESsNvXgz84BRzNyZtJY=";
19+
20+
ldflags = [
21+
"-s"
22+
"-w"
23+
];
24+
25+
meta = {
26+
changelog = "https://github.com/paepckehh/tlsinfo/releases/tag/v${version}";
27+
homepage = "https://paepcke.de/tlsinfo";
28+
description = "Tool to analyze and troubleshoot TLS connections";
29+
license = lib.licenses.bsd3;
30+
mainProgram = "tlsinfo";
31+
maintainers = with lib.maintainers; [ paepcke ];
32+
};
33+
}

0 commit comments

Comments
 (0)