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

45 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute2,
unixtools, dnsutils, coreutils, gnugrep, gnused }:
2018-04-12 21:14:49 +00:00
stdenv.mkDerivation rec {
pname = "acme.sh";
2021-06-03 21:24:03 +00:00
version = "2.9.0";
2018-04-12 21:14:49 +00:00
src = fetchFromGitHub {
owner = "Neilpang";
repo = "acme.sh";
rev = version;
2021-06-03 21:24:03 +00:00
sha256 = "sha256-BSKqfj8idpE4OV8/EJkCFo5i1vq/aEde/moqJcwuDvk=";
2018-04-12 21:14:49 +00:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
2018-04-12 21:14:49 +00:00
mkdir -p $out $out/bin $out/libexec
cp -R $src/* $_
makeWrapper $out/libexec/acme.sh $out/bin/acme.sh \
--prefix PATH : "${
lib.makeBinPath [
coreutils
gnugrep
gnused
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)
]
}"
runHook postInstall
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 = teams.serokell.members;
2018-04-12 21:14:49 +00:00
};
}