fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / tls / async.nix
blob906ec0b83b14286bf6150b7e0979da474c64d365
2   buildDunePackage,
3   tls,
4   async,
5   cstruct-async,
6   core,
7   mirage-crypto-rng-async,
8 }:
10 buildDunePackage rec {
11   pname = "tls-async";
13   inherit (tls) src version;
15   minimalOCamlVersion = "4.14";
17   doCheck = true;
19   propagatedBuildInputs = [
20     async
21     core
22     cstruct-async
23     mirage-crypto-rng-async
24     tls
25   ];
27   meta = tls.meta // {
28     description = "Transport Layer Security purely in OCaml, Async layer";
29   };