depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tls/async.nix
Default email a425ba4985 Project import generated by Copybara.
GitOrigin-RevId: 5b091d4fbe3b7b7493c3b46fe0842e4b30ea24b3
2021-12-30 14:39:12 +01:00

21 lines
368 B
Nix

{ 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
];
}