2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, perlPackages, makeWrapper, openssl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-21 07:28:18 +00:00
|
|
|
pname = "sslmate";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "1.9.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-21 07:28:18 +00:00
|
|
|
url = "https://packages.sslmate.com/other/${pname}-${version}.tar.gz";
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-F5szGn1cbw7R3lHMocM7as1RS/uaBqKCsvOxA+rXDOc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perlPackages.perl ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/sslmate --prefix PERL5LIB : \
|
|
|
|
"${with perlPackages; makePerlPath [
|
|
|
|
URI
|
|
|
|
JSONPP
|
|
|
|
TermReadKey
|
|
|
|
]}" \
|
|
|
|
--prefix PATH : "${openssl.bin}/bin"
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://sslmate.com";
|
|
|
|
maintainers = [ maintainers.domenkozar ];
|
|
|
|
description = "Easy to buy, deploy, and manage your SSL certs";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit; # X11
|
|
|
|
};
|
|
|
|
}
|