summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cohttp/lwt.nix
blob: 158aa3b27b266aa0a3aec6b33a72d7269f470af8 (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, cohttp, ocaml_lwt, uri, ppx_sexp_conv, logs, sexplib0 }:

buildDunePackage {
  pname = "cohttp-lwt";
  inherit (cohttp)
    version
    src
    useDune2
    minimumOCamlVersion
    ;

  buildInputs = [ ppx_sexp_conv ];

  propagatedBuildInputs = [
    cohttp ocaml_lwt logs sexplib0 uri
  ];

  meta = cohttp.meta // {
    description = "CoHTTP implementation using the Lwt concurrency library";
  };
}