add sslmate: easy to buy, deploy, and manage your SSL certs
This commit is contained in:
parent
faa7561a66
commit
8f977608f4
2 changed files with 34 additions and 0 deletions
32
pkgs/development/tools/sslmate/default.nix
Normal file
32
pkgs/development/tools/sslmate/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, fetchurl, perlPackages, perl, makeWrapper, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sslmate-1.5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://packages.sslmate.com/other/${name}.tar.gz";
|
||||
sha256 = "1vxdkydwww4awi6ishvq68jvlj6vkbfw7pin1cdqpl84vs9q7ycg";
|
||||
};
|
||||
|
||||
makeFlags = "PREFIX=$(out)";
|
||||
|
||||
buildInputs = [ perl makeWrapper ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/sslmate --prefix PERL5LIB : \
|
||||
"${with perlPackages; stdenv.lib.makePerlPath [
|
||||
URI
|
||||
JSONPP
|
||||
TermReadKey
|
||||
]}" \
|
||||
--prefix PATH : "${openssl}/bin"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://sslmate.com";
|
||||
maintainers = maintainers.iElectric;
|
||||
description = "Easy to buy, deploy, and manage your SSL certs";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.mit; # X11
|
||||
};
|
||||
}
|
|
@ -3089,6 +3089,8 @@ let
|
|||
|
||||
sslscan = callPackage ../tools/security/sslscan { };
|
||||
|
||||
sslmate = callPackage ../development/tools/sslmate { };
|
||||
|
||||
ssmtp = callPackage ../tools/networking/ssmtp {
|
||||
tlsSupport = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue