Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
361 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
letsencrypt,
emile,
http-mirage-client,
paf,
}:
buildDunePackage {
pname = "letsencrypt-mirage";
inherit (letsencrypt) version src;
propagatedBuildInputs = [
emile
http-mirage-client
letsencrypt
paf
];
meta = letsencrypt.meta // {
description = "ACME implementation in OCaml for MirageOS";
};
}