1{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
2
3buildDunePackage rec {
4 pname = "tls-async";
5
6 inherit (tls) src meta version;
7
8 minimalOCamlVersion = "4.11";
9 duneVersion = "3";
10
11 doCheck = true;
12
13 propagatedBuildInputs = [
14 async
15 core
16 cstruct
17 cstruct-async
18 mirage-crypto-rng-async
19 tls
20 ];
21}