mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
certinfo-go: init at 0.1.36
This commit is contained in:
parent
82f44122d9
commit
017dcbcc4d
33
pkgs/by-name/ce/certinfo-go/package.nix
Normal file
33
pkgs/by-name/ce/certinfo-go/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user