2020-04-06 02:51:28 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute, unixtools, dnsutils }:
|
2018-04-12 22:14:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "acme.sh";
|
2020-12-05 09:36:21 +00:00
|
|
|
version = "2.8.8";
|
2018-04-12 22:14:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Neilpang";
|
|
|
|
repo = "acme.sh";
|
|
|
|
rev = version;
|
2020-12-05 09:36:21 +00:00
|
|
|
sha256 = "1iqwzqgg26vsg7lwmgmga9y3ap9q8r5xyx799bj8kawnr8n6s4jd";
|
2018-04-12 22:14:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out $out/bin $out/libexec
|
|
|
|
cp -R $src/* $_
|
|
|
|
makeWrapper $out/libexec/acme.sh $out/bin/acme.sh \
|
2019-04-26 10:01:44 +01:00
|
|
|
--prefix PATH : "${
|
|
|
|
lib.makeBinPath [
|
|
|
|
socat
|
|
|
|
openssl
|
|
|
|
curl
|
2020-04-06 02:51:28 +01:00
|
|
|
dnsutils
|
2019-04-26 10:01:44 +01:00
|
|
|
(if stdenv.isLinux then iproute else unixtools.netstat)
|
|
|
|
]
|
|
|
|
}"
|
2018-04-12 22:14:49 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-12 22:14:49 +01:00
|
|
|
description = "A pure Unix shell script implementing ACME client protocol";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://acme.sh/";
|
2018-04-12 22:14:49 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.yorickvp ];
|
|
|
|
};
|
|
|
|
}
|