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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
448 B
Nix
Raw Normal View History

{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
2021-06-07 18:20:56 +00:00
buildDunePackage rec {
pname = "tls-async";
inherit (tls) src version;
2021-06-07 18:20:56 +00:00
minimalOCamlVersion = "4.14";
2021-06-07 18:20:56 +00:00
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";
};
2021-06-07 18:20:56 +00:00
}