1{
2 buildDunePackage,
3 letsencrypt,
4 emile,
5 http-mirage-client,
6 paf,
7}:
8
9buildDunePackage {
10 pname = "letsencrypt-mirage";
11
12 inherit (letsencrypt) version src;
13
14 propagatedBuildInputs = [
15 emile
16 http-mirage-client
17 letsencrypt
18 paf
19 ];
20
21 meta = letsencrypt.meta // {
22 description = "ACME implementation in OCaml for MirageOS";
23 };
24}