Skip to content

Commit

Permalink
certmgr: init at 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Johan Thomsen committed Aug 3, 2018
1 parent 150f4fe commit 5050074
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/security/certmgr/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 5050074

Please sign in to comment.