ocamlPackages.tls-async: init 0.13.2

This commit is contained in:
superherointj
2021-06-18 12:44:54 +02:00
committed by Vincent Laporte
parent d44f56f19c
commit ff17ccefee
2 changed files with 23 additions and 0 deletions
@@ -0,0 +1,21 @@
{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
buildDunePackage rec {
pname = "tls-async";
inherit (tls) src meta version;
minimumOCamlVersion = "4.08";
useDune2 = true;
doCheck = true;
propagatedBuildInputs = [
async
core
cstruct
cstruct-async
mirage-crypto-rng-async
tls
];
}
+2
View File
@@ -1034,6 +1034,8 @@ let
tls = callPackage ../development/ocaml-modules/tls { };
tls-async = callPackage ../development/ocaml-modules/tls/async.nix { };
tls-mirage = callPackage ../development/ocaml-modules/tls/mirage.nix { };
torch = callPackage ../development/ocaml-modules/torch {