Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a6900b9a139c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a7ea08d60d56
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 3, 2018

  1. certmgr: init at 1.6.1

    Johan Thomsen committed Aug 3, 2018
    Copy the full SHA
    5050074 View commit details
  2. Merge pull request #44406 from johanot/certmgr-pkgs-init

    certmgr: init at 1.6.1
    infinisil authored Aug 3, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a7ea08d View commit details
Showing with 25 additions and 0 deletions.
  1. +23 −0 pkgs/tools/security/certmgr/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
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
@@ -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;
};