2021-10-01 09:20:50 +00:00
|
|
|
{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async, async_find }:
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "tls-async";
|
|
|
|
|
|
|
|
inherit (tls) src meta version;
|
|
|
|
|
|
|
|
minimumOCamlVersion = "4.08";
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
async
|
2021-10-01 09:20:50 +00:00
|
|
|
async_find
|
2021-06-28 23:13:55 +00:00
|
|
|
core
|
|
|
|
cstruct
|
|
|
|
cstruct-async
|
|
|
|
mirage-crypto-rng-async
|
|
|
|
tls
|
|
|
|
];
|
|
|
|
}
|