3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/certigo/default.nix

25 lines
608 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-05-21 15:54:41 +01:00
2020-02-29 00:20:00 +00:00
buildGoModule rec {
2019-05-21 15:54:41 +01:00
pname = "certigo";
version = "1.13.0";
2019-05-21 15:54:41 +01:00
src = fetchFromGitHub {
owner = "square";
repo = pname;
rev = "v${version}";
sha256 = "sha256-3VysSE4N2MlNDOZ27RbCe8rUuYChU5Z3L/CIhtvMp38=";
2019-05-21 15:54:41 +01:00
};
vendorSha256 = "sha256-0wul0f8T7E4cXbsNee1j1orUgjrAToqDLgwCjiyii1Y=";
2019-05-21 15:54:41 +01:00
doCheck = false;
meta = with lib; {
2019-05-21 15:54:41 +01:00
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 ];
};
}