f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
24 lines
443 B
Nix
24 lines
443 B
Nix
{ 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";
|
|
};
|
|
}
|