Merge remote-tracking branch 'upstream/master' into staging
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchFromGitHub, stdenv, pythonPackages, gnupg }:
|
||||
{ fetchFromGitHub, stdenv, pythonPackages, gnupg, perl }:
|
||||
|
||||
let version = "2.2.6"; in
|
||||
pythonPackages.buildPythonApplication {
|
||||
@@ -18,6 +18,8 @@ pythonPackages.buildPythonApplication {
|
||||
done
|
||||
'';
|
||||
|
||||
buildInputs = [ perl ];
|
||||
|
||||
meta = {
|
||||
homepage = https://www.phildev.net/pius/;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user