about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tls/async.nix
blob: 002af344db9cdd1b33c45350597047ad29de155d (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;

  minimalOCamlVersion = "4.11";
  duneVersion = "3";

  doCheck = true;

  propagatedBuildInputs = [
    async
    core
    cstruct
    cstruct-async
    mirage-crypto-rng-async
    tls
  ];
}