nixpkgs/pkgs/development/ocaml-modules/tls/async.nix

23 lines
395 B
Nix
Raw Normal View History

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