Files

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

35 lines
448 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
letsencrypt,
logs,
fmt,
lwt,
dns,
dns-tsig,
domain-name,
}:
buildDunePackage {
pname = "letsencrypt-dns";
minimalOCamlVersion = "4.08";
inherit (letsencrypt)
version
src
;
propagatedBuildInputs = [
letsencrypt
dns
dns-tsig
domain-name
logs
lwt
fmt
];
meta = letsencrypt.meta // {
description = "DNS solver for the ACME implementation in OCaml";
};
}