Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
419 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
tls,
async,
cstruct-async,
core,
mirage-crypto-rng,
}:
buildDunePackage {
pname = "tls-async";
inherit (tls) src version;
minimalOCamlVersion = "4.14";
doCheck = true;
propagatedBuildInputs = [
async
core
cstruct-async
mirage-crypto-rng
tls
];
meta = tls.meta // {
description = "Transport Layer Security purely in OCaml, Async layer";
};
}