mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
certigo: init at 1.11.0 (#61782)
This commit is contained in:
parent
4e7693618c
commit
52146c5484
22
pkgs/tools/admin/certigo/default.nix
Normal file
22
pkgs/tools/admin/certigo/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "certigo";
|
||||
version = "1.11.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "square";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1vi4gn484kc7vyxnm2nislzy587h2h4gc8d197vslhyfygac9y7b";
|
||||
};
|
||||
|
||||
modSha256 = "0x0iq3w5310dg8lp2kkw82iryfhs9p4707538f5dcxjsllpqvcvj";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A utility to examine and validate certificates in a variety of formats";
|
||||
homepage = "https://github.com/square/certigo";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
};
|
||||
}
|
@ -699,6 +699,8 @@ in
|
||||
|
||||
bunny = callPackage ../tools/package-management/bunny { };
|
||||
|
||||
certigo = callPackage ../tools/admin/certigo { };
|
||||
|
||||
chezmoi = callPackage ../tools/misc/chezmoi { };
|
||||
|
||||
chipsec = callPackage ../tools/security/chipsec {
|
||||
|
Loading…
Reference in New Issue
Block a user