Merge pull request #26189 from mbrgm/cfssl

cfssl: init at 20170527
This commit is contained in:
Jörg Thalheim 2017-05-28 19:22:54 +01:00 committed by GitHub
commit ce61c20742
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub, pkgs }:
buildGoPackage rec {
name = "cfssl-${version}";
version = "20170527";
goPackagePath = "github.com/cloudflare/cfssl";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cfssl";
rev = "114dc9691ec7bf3dac49d5953eccf7d91a0e0904";
sha256 = "1ijq43mrzrf1gkgj5ssxq7sgy6sd4rl706dzqkq9krqv5f6kwhj1";
};
meta = with stdenv.lib; {
homepage = https://cfssl.org/;
description = "Cloudflare's PKI and TLS toolkit";
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = with maintainers; [ mbrgm ];
};
}

View file

@ -1386,6 +1386,8 @@ with pkgs;
c14 = callPackage ../applications/networking/c14 { };
cfssl = callPackage ../tools/security/cfssl { };
checkbashisms = callPackage ../development/tools/misc/checkbashisms { };
clamav = callPackage ../tools/security/clamav { };