d1f1457e3f
jackline: 2023-02-24 → 2023-03-09
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";
|
|
};
|
|
}
|