2018-12-15 03:50:31 +00:00
|
|
|
{ stdenv, fetchurl, perlPackages, makeWrapper, openssl }:
|
2015-10-26 11:57:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-04 17:48:42 +00:00
|
|
|
name = "sslmate-1.7.1";
|
2015-10-26 11:57:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://packages.sslmate.com/other/${name}.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
|
|
|
|
2018-12-15 03:50:31 +00:00
|
|
|
buildInputs = [ perlPackages.perl makeWrapper ];
|
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
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sslmate.com";
|
2016-05-17 12:57:28 +01: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
|
|
|
|
};
|
|
|
|
}
|