2025-08-08 00:45:17 +00:00

28 lines
605 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "certigo";
version = "1.17.1";
src = fetchFromGitHub {
owner = "square";
repo = "certigo";
rev = "v${version}";
sha256 = "sha256-dn2GqEiSzlcqNPoAZhPESRsl3LOUBlaPs59rUjf2c5k=";
};
vendorHash = "sha256-hBuR6a0gBhuYICbuiHxJdbDr4hLF4mQvIcMr5FHfOu8=";
meta = with lib; {
description = "Utility to examine and validate certificates in a variety of formats";
homepage = "https://github.com/square/certigo";
license = licenses.asl20;
maintainers = [ ];
mainProgram = "certigo";
};
}