summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/admin/acme.sh
diff options
context:
space:
mode:
authorYorick <yorickvanpelt@gmail.com>2018-04-12 23:14:49 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2018-04-12 22:14:49 +0100
commit276580f76968b9d3549bb4ded12abf651dcf2528 (patch)
treedfbb0386970b66c34f6e8a09786892f5bc4dc870 /pkgs/tools/admin/acme.sh
parent0806a3cf2fbe29872f9980b8a8abf271e5668d6b (diff)
acme.sh: init at 2.7.8 (#38856)
Diffstat (limited to 'pkgs/tools/admin/acme.sh')
-rw-r--r--pkgs/tools/admin/acme.sh/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/admin/acme.sh/default.nix b/pkgs/tools/admin/acme.sh/default.nix
new file mode 100644
index 000000000000..00d8bdd3ef4c
--- /dev/null
+++ b/pkgs/tools/admin/acme.sh/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute }:
+stdenv.mkDerivation rec {
+ name = "acme.sh-${version}";
+ version = "2.7.8";
+
+ src = fetchFromGitHub {
+ owner = "Neilpang";
+ repo = "acme.sh";
+ rev = version;
+ sha256 = "0zm64z7av63xi7yjhljab2i8q1vx4q1mpcmcm58jm6k4babalxrf";
+ };
+
+ 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 ];
+ };
+}