summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/conduit/lwt-unix.nix
blob: 3f91d9b75365cd6ddf996e16cf055b91cc47a092 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ buildDunePackage
, conduit-lwt, ppx_sexp_conv, lwt, uri, ipaddr, ipaddr-sexp, ca-certs, logs
, lwt_ssl, tls, lwt_log, ssl
}:

buildDunePackage {
  pname = "conduit-lwt-unix";
  inherit (conduit-lwt) version src;
  duneVersion = "3";

  buildInputs = [ ppx_sexp_conv ];

  propagatedBuildInputs = [
    conduit-lwt
    lwt
    uri
    ipaddr
    ipaddr-sexp
    tls
    ca-certs
    logs
    lwt_ssl
  ];

  doCheck = true;
  nativeCheckInputs = [
    lwt_log
    ssl
  ];

  meta = conduit-lwt.meta // {
    description = "A network connection establishment library for Lwt_unix";
  };
}