certinfo-go: init at 0.1.36

This commit is contained in:
PAEPCKE, Michael 2024-10-20 09:02:53 +00:00 committed by tomf
parent 82f44122d9
commit 017dcbcc4d

View File

@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "certinfo-go";
version = "0.1.36";
src = fetchFromGitHub {
owner = "paepckehh";
repo = "certinfo";
rev = "refs/tags/v${version}";
hash = "sha256-ySXp5dPdGhBEbo9uvCsINCufhm9j/dIX0Jn+Ou73NjM=";
};
vendorHash = "sha256-wrz33FSBz4Kg9aYCj7/Pq07bP73MV9iSQKc3X39OkHc=";
ldflags = [
"-s"
"-w"
];
meta = {
changelog = "https://github.com/paepckehh/certinfo/releases/tag/v${version}";
homepage = "https://paepcke.de/certinfo";
description = "Tool to analyze and troubleshoot x.509 & ssh certificates, encoded keys, ...";
license = lib.licenses.bsd3;
mainProgram = "certinfo";
maintainers = with lib.maintainers; [ paepcke ];
};
}