mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
certmgr: init at 1.6.1
This commit is contained in:
parent
150f4fe9c4
commit
505007471d
23
pkgs/tools/security/certmgr/default.nix
Normal file
23
pkgs/tools/security/certmgr/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
version = "1.6.1";
|
||||
name = "certmgr-${version}";
|
||||
|
||||
goPackagePath = "github.com/cloudflare/certmgr/";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cloudflare";
|
||||
repo = "certmgr";
|
||||
rev = "v${version}";
|
||||
sha256 = "1ky2pw1wxrb2fxfygg50h0mid5l023x6xz9zj5754a023d01qqr2";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://cfssl.org/;
|
||||
description = "Cloudflare's certificate manager";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ johanot srhb ];
|
||||
};
|
||||
}
|
|
@ -1696,6 +1696,8 @@ with pkgs;
|
|||
ceph = callPackage ../tools/filesystems/ceph { boost = boost165; };
|
||||
ceph-dev = ceph;
|
||||
|
||||
certmgr = callPackage ../tools/security/certmgr { };
|
||||
|
||||
cfdg = callPackage ../tools/graphics/cfdg {
|
||||
ffmpeg = ffmpeg_2;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue