depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tls/async.nix
Default email f61cd259d4 Project import generated by Copybara.
GitOrigin-RevId: 82155ff501c7622cb2336646bb62f7624261f6d7
2021-10-01 17:20:50 +08:00

22 lines
395 B
Nix

{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async, async_find }:
buildDunePackage rec {
pname = "tls-async";
inherit (tls) src meta version;
minimumOCamlVersion = "4.08";
useDune2 = true;
doCheck = true;
propagatedBuildInputs = [
async
async_find
core
cstruct
cstruct-async
mirage-crypto-rng-async
tls
];
}