5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
24 lines
448 B
Nix
24 lines
448 B
Nix
{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "tls-async";
|
|
|
|
inherit (tls) src version;
|
|
|
|
minimalOCamlVersion = "4.14";
|
|
|
|
doCheck = true;
|
|
|
|
propagatedBuildInputs = [
|
|
async
|
|
core
|
|
cstruct
|
|
cstruct-async
|
|
mirage-crypto-rng-async
|
|
tls
|
|
];
|
|
|
|
meta = tls.meta // {
|
|
description = "Transport Layer Security purely in OCaml, Async layer";
|
|
};
|
|
}
|