mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
ocamlPackages.tls-async: init 0.13.2
This commit is contained in:
parent
d44f56f19c
commit
ff17ccefee
21
pkgs/development/ocaml-modules/tls/async.nix
Normal file
21
pkgs/development/ocaml-modules/tls/async.nix
Normal file
|
@ -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
|
||||
];
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue