about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/letsencrypt/app.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/letsencrypt/app.nix')
-rw-r--r--pkgs/development/ocaml-modules/letsencrypt/app.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/development/ocaml-modules/letsencrypt/app.nix b/pkgs/development/ocaml-modules/letsencrypt/app.nix
deleted file mode 100644
index dc9006d6d16b..000000000000
--- a/pkgs/development/ocaml-modules/letsencrypt/app.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ lib
-, buildDunePackage
-, letsencrypt
-, letsencrypt-dns
-, cmdliner
-, cohttp-lwt-unix
-, logs
-, fmt
-, lwt
-, mirage-crypto-rng
-, ptime
-, bos
-, fpath
-, randomconv
-}:
-
-buildDunePackage {
-  pname = "letsencrypt-app";
-
-  inherit (letsencrypt)
-    src
-    version
-    useDune2
-    minimumOCamlVersion
-    ;
-
-  buildInputs = [
-    letsencrypt
-    letsencrypt-dns
-    cmdliner
-    cohttp-lwt-unix
-    logs
-    fmt
-    lwt
-    mirage-crypto-rng
-    ptime
-    bos
-    fpath
-    randomconv
-  ];
-
-  meta = letsencrypt.meta // {
-    description = "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml";
-  };
-}