2021-12-30 10:05:06 +00:00
|
|
|
{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
|
2021-06-07 18:20:56 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "tls-async";
|
|
|
|
|
2023-09-01 04:50:28 +00:00
|
|
|
inherit (tls) src version;
|
2021-06-07 18:20:56 +00:00
|
|
|
|
2023-09-01 04:50:28 +00:00
|
|
|
minimalOCamlVersion = "4.14";
|
2021-06-07 18:20:56 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
async
|
|
|
|
core
|
|
|
|
cstruct
|
|
|
|
cstruct-async
|
|
|
|
mirage-crypto-rng-async
|
|
|
|
tls
|
|
|
|
];
|
2023-09-01 04:50:28 +00:00
|
|
|
|
|
|
|
meta = tls.meta // {
|
|
|
|
description = "Transport Layer Security purely in OCaml, Async layer";
|
|
|
|
};
|
2021-06-07 18:20:56 +00:00
|
|
|
}
|