nixpkgs/pkgs/tools/admin/certigo/default.nix

23 lines
597 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2019-05-21 14:54:41 +00:00
2020-02-29 00:20:00 +00:00
buildGoModule rec {
2019-05-21 14:54:41 +00:00
pname = "certigo";
2020-02-29 00:20:00 +00:00
version = "1.12.1";
2019-05-21 14:54:41 +00:00
src = fetchFromGitHub {
owner = "square";
repo = pname;
rev = "v${version}";
2020-02-29 00:20:00 +00:00
sha256 = "0siwbxxzknmbsjy23d0lvh591ngabqhr2g8mip0siwa7c1y7ivv4";
2019-05-21 14:54:41 +00:00
};
2020-02-29 00:20:00 +00:00
modSha256 = "1i5n5yh6nvv2i2nm60vqy1gngj8p5w6ma5fcwmp7bl4jxjrzbi83";
2019-05-21 14:54:41 +00:00
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 ];
};
}