about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tls/async.nix
blob: ceac7a7c074957bdd4f0c109170233b229ac7bef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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
  ];
}