tlsinfo: init at 0.1.41

This commit is contained in:
PAEPCKE, Michael 2024-10-20 08:49:16 +00:00
parent 88d3f02d30
commit a7ad1c182b
No known key found for this signature in database

View File

@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "tlsinfo";
version = "0.1.41";
src = fetchFromGitHub {
owner = "paepckehh";
repo = "tlsinfo";
rev = "refs/tags/v${version}";
hash = "sha256-II5/UDWVeEoupM1Ijty2A9M/qwWA2/b4Y68lTkxnJ9o=";
};
vendorHash = "sha256-IyinAjgK4vm+TkSGQq+XnY9BESsNvXgz84BRzNyZtJY=";
ldflags = [
"-s"
"-w"
];
meta = {
changelog = "https://github.com/paepckehh/tlsinfo/releases/tag/v${version}";
homepage = "https://paepcke.de/tlsinfo";
description = "Tool to analyze and troubleshoot TLS connections";
license = lib.licenses.bsd3;
mainProgram = "tlsinfo";
maintainers = with lib.maintainers; [ paepcke ];
};
}