nixpkgs/pkgs/tools/admin/acme.sh/default.nix
R. RyanTM 3ba2580d4c acme-sh: 2.8.2 -> 2.8.3 (#70555)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/acme.sh/versions
2019-10-13 17:48:16 +02:00

36 lines
914 B
Nix

{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute, unixtools }:
stdenv.mkDerivation rec {
pname = "acme.sh";
version = "2.8.3";
src = fetchFromGitHub {
owner = "Neilpang";
repo = "acme.sh";
rev = version;
sha256 = "0j9wn61jd107fq9ww79399s7adql0vf897s0xavlvv6chq8a6ajj";
};
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
(if stdenv.isLinux then iproute else unixtools.netstat)
]
}"
'';
meta = with stdenv.lib; {
description = "A pure Unix shell script implementing ACME client protocol";
homepage = https://acme.sh/;
license = licenses.gpl3;
maintainers = [ maintainers.yorickvp ];
};
}