mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
commit
ce61c20742
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/security/cfssl/default.nix
Normal file
23
pkgs/tools/security/cfssl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue