25 lines
610 B
Nix
Raw Permalink Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-05-21 09:54:41 -05:00
2020-02-28 19:20:00 -05:00
buildGoModule rec {
2019-05-21 09:54:41 -05:00
pname = "certigo";
2020-02-28 19:20:00 -05:00
version = "1.12.1";
2019-05-21 09:54:41 -05:00
src = fetchFromGitHub {
owner = "square";
repo = pname;
rev = "v${version}";
2020-02-28 19:20:00 -05:00
sha256 = "0siwbxxzknmbsjy23d0lvh591ngabqhr2g8mip0siwa7c1y7ivv4";
2019-05-21 09:54:41 -05:00
};
vendorSha256 = "1l6ajfl04rfbssvijgd5jrppmqc5svfrswdx01x007lr8rvdfd94";
2019-05-21 09:54:41 -05:00
doCheck = false;
meta = with lib; {
2019-05-21 09:54:41 -05: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 ];
};
}