nixpkgs/pkgs/tools/admin/acme.sh/default.nix

37 lines
940 B
Nix
Raw Normal View History

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