depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tls/async.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

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";
};
}