about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tls/lwt.nix
blob: d7db822182d3d00419cad13a1a40d0e1e7e7885e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildDunePackage, tls, lwt, mirage-crypto-rng-lwt, cmdliner, x509 }:

buildDunePackage rec {
  pname = "tls-lwt";

  inherit (tls) src meta version;

  minimalOCamlVersion = "4.11";

  doCheck = true;

  propagatedBuildInputs = [
    lwt
    mirage-crypto-rng-lwt
    tls
    x509
  ];
}