nixpkgs/pkgs/development/ocaml-modules/tls/async.nix
Vincent Laporte d1f1457e3f ocamlPackages.tls: 0.16.0 → 0.17.1
jackline: 2023-02-24 → 2023-03-09
2023-09-08 12:04:31 +02:00

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