ocamlPackages.letsencrypt: init at 0.2.4
This commit is contained in:
parent
a7d20d409d
commit
6c95bce8b6
84
pkgs/development/ocaml-modules/letsencrypt/default.nix
Normal file
84
pkgs/development/ocaml-modules/letsencrypt/default.nix
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
{ buildDunePackage
|
||||||
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
, astring
|
||||||
|
, asn1-combinators
|
||||||
|
, uri
|
||||||
|
, rresult
|
||||||
|
, base64
|
||||||
|
, cmdliner
|
||||||
|
, cohttp
|
||||||
|
, cohttp-lwt
|
||||||
|
, cohttp-lwt-unix
|
||||||
|
, zarith
|
||||||
|
, logs
|
||||||
|
, fmt
|
||||||
|
, lwt
|
||||||
|
, mirage-crypto
|
||||||
|
, mirage-crypto-pk
|
||||||
|
, mirage-crypto-rng
|
||||||
|
, x509
|
||||||
|
, yojson
|
||||||
|
, ounit
|
||||||
|
, dns
|
||||||
|
, dns-tsig
|
||||||
|
, ptime
|
||||||
|
, bos
|
||||||
|
, fpath
|
||||||
|
, randomconv
|
||||||
|
, domain-name
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "letsencrypt";
|
||||||
|
version = "0.2.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v${version}/letsencrypt-v${version}.tbz";
|
||||||
|
sha256 = "91c79828a50243804da29c17563c54d2d528a79207e5b874dce6a3e7fedf7567";
|
||||||
|
};
|
||||||
|
|
||||||
|
minimumOCamlVersion = "4.08";
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cmdliner
|
||||||
|
cohttp
|
||||||
|
cohttp-lwt-unix
|
||||||
|
zarith
|
||||||
|
fmt
|
||||||
|
mirage-crypto-rng
|
||||||
|
ptime
|
||||||
|
bos
|
||||||
|
fpath
|
||||||
|
randomconv
|
||||||
|
domain-name
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
logs
|
||||||
|
yojson
|
||||||
|
lwt
|
||||||
|
base64
|
||||||
|
mirage-crypto
|
||||||
|
mirage-crypto-pk
|
||||||
|
asn1-combinators
|
||||||
|
x509
|
||||||
|
uri
|
||||||
|
dns
|
||||||
|
dns-tsig
|
||||||
|
rresult
|
||||||
|
astring
|
||||||
|
cohttp-lwt
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [ ounit ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "ACME implementation in OCaml";
|
||||||
|
license = lib.licenses.bsd2;
|
||||||
|
maintainers = [ lib.maintainers.sternenseemann ];
|
||||||
|
homepage = "https://github.com/mmaker/ocaml-letsencrypt";
|
||||||
|
};
|
||||||
|
}
|
@ -580,6 +580,8 @@ let
|
|||||||
|
|
||||||
lens = callPackage ../development/ocaml-modules/lens { };
|
lens = callPackage ../development/ocaml-modules/lens { };
|
||||||
|
|
||||||
|
letsencrypt = callPackage ../development/ocaml-modules/letsencrypt { };
|
||||||
|
|
||||||
linenoise = callPackage ../development/ocaml-modules/linenoise { };
|
linenoise = callPackage ../development/ocaml-modules/linenoise { };
|
||||||
|
|
||||||
llvm = callPackage ../development/ocaml-modules/llvm {
|
llvm = callPackage ../development/ocaml-modules/llvm {
|
||||||
|
Loading…
Reference in New Issue
Block a user