2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, perlPackages, makeWrapper, openssl }:
|
2015-10-26 11:57:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 10:34:30 +00:00
|
|
|
pname = "sslmate";
|
|
|
|
version = "1.7.1";
|
2015-10-26 11:57:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-20 10:34:30 +00:00
|
|
|
url = "https://packages.sslmate.com/other/${pname}-${version}.tar.gz";
|
2020-02-04 17:48:42 +00:00
|
|
|
sha256 = "1i56za41cfqlml9g787xqqs0r8jifd3y7ks9nf4k2dhhi4rijkj5";
|
2015-10-26 11:57:21 +00:00
|
|
|
};
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-10-26 11:57:21 +00:00
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perlPackages.perl ];
|
2015-10-26 11:57:21 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/sslmate --prefix PERL5LIB : \
|
2018-12-15 03:50:31 +00:00
|
|
|
"${with perlPackages; makePerlPath [
|
2015-10-26 11:57:21 +00:00
|
|
|
URI
|
|
|
|
JSONPP
|
|
|
|
TermReadKey
|
|
|
|
]}" \
|
2016-02-01 18:46:16 +00:00
|
|
|
--prefix PATH : "${openssl.bin}/bin"
|
2015-10-26 11:57:21 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://sslmate.com";
|
2016-05-17 11:57:28 +00:00
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2015-10-26 11:57:21 +00:00
|
|
|
description = "Easy to buy, deploy, and manage your SSL certs";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit; # X11
|
|
|
|
};
|
|
|
|
}
|