mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
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";
|
|
};
|
|
}
|