mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
49 lines
665 B
Nix
49 lines
665 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, letsencrypt
|
|
, letsencrypt-dns
|
|
, cmdliner
|
|
, cohttp-lwt-unix
|
|
, logs
|
|
, fmt
|
|
, lwt
|
|
, mirage-crypto-rng
|
|
, ptime
|
|
, bos
|
|
, fpath
|
|
, randomconv
|
|
, cstruct
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "letsencrypt-app";
|
|
|
|
inherit (letsencrypt)
|
|
src
|
|
version
|
|
useDune2
|
|
minimumOCamlVersion
|
|
;
|
|
|
|
buildInputs = [
|
|
letsencrypt
|
|
letsencrypt-dns
|
|
cmdliner
|
|
cohttp-lwt-unix
|
|
logs
|
|
fmt
|
|
lwt
|
|
mirage-crypto-rng
|
|
ptime
|
|
bos
|
|
fpath
|
|
randomconv
|
|
cstruct
|
|
];
|
|
|
|
meta = letsencrypt.meta // {
|
|
description = "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml";
|
|
mainProgram = "oacmel";
|
|
};
|
|
}
|