3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/acme.sh/default.nix

29 lines
801 B
Nix
Raw Normal View History

2018-04-12 22:14:49 +01:00
{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute }:
stdenv.mkDerivation rec {
name = "acme.sh-${version}";
version = "2.7.9";
2018-04-12 22:14:49 +01:00
src = fetchFromGitHub {
owner = "Neilpang";
repo = "acme.sh";
rev = version;
sha256 = "1fp1sifhm4in0cqmc8i0zms7fqxw0rgfi1rkkm496d3068a4a51x";
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 \
--prefix PATH : "${lib.makeBinPath [ socat openssl curl iproute ]}"
'';
meta = with stdenv.lib; {
description = "A pure Unix shell script implementing ACME client protocol";
homepage = https://acme.sh/;
license = licenses.gpl3;
maintainers = [ maintainers.yorickvp ];
};
}