Skip to content

Commit

Permalink
certinfo-go: init at 0.1.36
Browse files Browse the repository at this point in the history
  • Loading branch information
paepckehh committed Oct 20, 2024
1 parent 23c4c19 commit 44ad7f3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/ce/certinfo-go/package.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 44ad7f3

Please sign in to comment.