diff options
Diffstat (limited to 'pkgs/tools/admin/uacme/default.nix')
-rw-r--r-- | pkgs/tools/admin/uacme/default.nix | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/tools/admin/uacme/default.nix b/pkgs/tools/admin/uacme/default.nix deleted file mode 100644 index 6bf1d55e4375..000000000000 --- a/pkgs/tools/admin/uacme/default.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ lib -, stdenv -, fetchFromGitHub -, asciidoc -, autoconf-archive -, autoreconfHook -, pkg-config -, curl -, openssl -}: -stdenv.mkDerivation rec { - pname = "uacme"; - version = "1.7.5"; - - src = fetchFromGitHub { - owner = "ndilieto"; - repo = "uacme"; - rev = "v${version}"; - hash = "sha256-MaPMNAUuQmJAbl7qBqNCkzW4k6nkibezEMRaCho5I68="; - }; - - configureFlags = [ "--with-openssl" ]; - - nativeBuildInputs = [ - asciidoc - autoconf-archive - autoreconfHook - pkg-config - ]; - - buildInputs = [ - curl - openssl - ]; - - meta = with lib; { - description = "ACMEv2 client written in plain C with minimal dependencies"; - homepage = "https://github.com/ndilieto/uacme"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ malte-v ]; - platforms = platforms.unix; - broken = stdenv.isDarwin; - }; -} |