21 lines
358 B
Nix
21 lines
358 B
Nix
|
{ buildDunePackage
|
||
|
, letsencrypt
|
||
|
, emile
|
||
|
, http-mirage-client
|
||
|
, paf
|
||
|
}:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "letsencrypt-mirage";
|
||
|
|
||
|
inherit (letsencrypt) version src;
|
||
|
|
||
|
duneVersion = "3";
|
||
|
|
||
|
propagatedBuildInputs = [ emile http-mirage-client letsencrypt paf ];
|
||
|
|
||
|
meta = letsencrypt.meta // {
|
||
|
description = "ACME implementation in OCaml for MirageOS";
|
||
|
};
|
||
|
}
|