3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/minio-certgen/default.nix

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

24 lines
632 B
Nix
Raw Normal View History

2021-07-21 20:54:52 +01:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "minio-certgen";
2022-08-17 16:28:26 +01:00
version = "1.2.1";
2021-07-21 20:54:52 +01:00
src = fetchFromGitHub {
owner = "minio";
repo = "certgen";
rev = "v${version}";
2022-08-17 16:28:26 +01:00
sha256 = "sha256-qi+SeNLW/jE2dGar4Lf16TKRT3ZTmWB/j8EsnoyrdxI=";
2021-07-21 20:54:52 +01:00
};
2022-02-19 20:32:25 +00:00
vendorSha256 = null;
2021-07-21 20:54:52 +01:00
meta = with lib; {
description = "A simple Minio tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries";
downloadPage = "https://github.com/minio/certgen";
license = licenses.bsd3;
maintainers = with maintainers; [ bryanasdev000 ];
mainProgram = "certgen";
2021-07-21 20:54:52 +01:00
};
}