2021-10-01 09:20:50 +00:00
|
|
|
{ lib
|
|
|
|
, buildDunePackage
|
|
|
|
, letsencrypt
|
|
|
|
, letsencrypt-dns
|
|
|
|
, cmdliner
|
|
|
|
, cohttp-lwt-unix
|
|
|
|
, logs
|
|
|
|
, fmt
|
|
|
|
, lwt
|
|
|
|
, mirage-crypto-rng
|
|
|
|
, ptime
|
|
|
|
, bos
|
|
|
|
, fpath
|
|
|
|
, randomconv
|
2021-12-30 13:39:12 +00:00
|
|
|
, cstruct
|
2021-10-01 09:20:50 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "letsencrypt-app";
|
2023-01-20 10:41:00 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
minimalOCamlVersion = "4.08";
|
2021-10-01 09:20:50 +00:00
|
|
|
|
|
|
|
inherit (letsencrypt)
|
|
|
|
src
|
|
|
|
version
|
|
|
|
;
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
letsencrypt
|
|
|
|
letsencrypt-dns
|
|
|
|
cmdliner
|
|
|
|
cohttp-lwt-unix
|
|
|
|
logs
|
|
|
|
fmt
|
|
|
|
lwt
|
|
|
|
mirage-crypto-rng
|
|
|
|
ptime
|
|
|
|
bos
|
|
|
|
fpath
|
|
|
|
randomconv
|
2021-12-30 13:39:12 +00:00
|
|
|
cstruct
|
2021-10-01 09:20:50 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = letsencrypt.meta // {
|
|
|
|
description = "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml";
|
2022-05-18 14:49:53 +00:00
|
|
|
mainProgram = "oacmel";
|
2021-10-01 09:20:50 +00:00
|
|
|
};
|
|
|
|
}
|