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

37 lines
945 B
Nix
Raw Normal View History

2020-04-06 03:51:28 +02:00
{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute, unixtools, dnsutils }:
2018-04-12 23:14:49 +02:00
stdenv.mkDerivation rec {
pname = "acme.sh";
2020-01-20 04:00:35 +01:00
version = "2.8.5";
2018-04-12 23:14:49 +02:00
src = fetchFromGitHub {
owner = "Neilpang";
repo = "acme.sh";
rev = version;
2020-01-20 04:00:35 +01:00
sha256 = "0yxhfdb0jz0wn10ka6c79qvcx07656vsaxmjls8qgcfgc472ymhs";
2018-04-12 23:14:49 +02: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 03:51:28 +02:00
dnsutils
(if stdenv.isLinux then iproute else unixtools.netstat)
]
}"
2018-04-12 23:14:49 +02:00
'';
meta = with stdenv.lib; {
description = "A pure Unix shell script implementing ACME client protocol";
homepage = "https://acme.sh/";
2018-04-12 23:14:49 +02:00
license = licenses.gpl3;
maintainers = [ maintainers.yorickvp ];
};
}