aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/admin/acme.sh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/admin/acme.sh/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/admin/acme.sh/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/tools/admin/acme.sh/default.nix b/nixpkgs/pkgs/tools/admin/acme.sh/default.nix
index 25a92f1117b..8d4863757ad 100644
--- a/nixpkgs/pkgs/tools/admin/acme.sh/default.nix
+++ b/nixpkgs/pkgs/tools/admin/acme.sh/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute, unixtools }:
+{ stdenv, lib, fetchFromGitHub, makeWrapper, curl, openssl, socat, iproute, unixtools, dnsutils }:
stdenv.mkDerivation rec {
pname = "acme.sh";
version = "2.8.5";
@@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
socat
openssl
curl
+ dnsutils
(if stdenv.isLinux then iproute else unixtools.netstat)
]
}"
@@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A pure Unix shell script implementing ACME client protocol";
- homepage = https://acme.sh/;
+ homepage = "https://acme.sh/";
license = licenses.gpl3;
maintainers = [ maintainers.yorickvp ];
};