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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
615 B
Nix
Raw Normal View History

{ lib, 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";
version = "1.16.0";
2019-05-21 14:54:41 +00:00
src = fetchFromGitHub {
owner = "square";
repo = pname;
rev = "v${version}";
sha256 = "sha256-+j1NeQJPDwQxXVYnHNmL49Li2IMH+9ehS0HSM3kqyxU=";
2019-05-21 14:54:41 +00:00
};
vendorHash = "sha256-G9YpMF4qyL8eJPnai81ihVTDK9E4meKxdpk+rjISnIM=";
meta = with lib; {
2019-05-21 14:54:41 +00: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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "certigo";
2019-05-21 14:54:41 +00:00
};
}