about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/conduit/lwt.nix
blob: 2f18027a67b0c894f64fc7d519dfd854ee5648bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildDunePackage, ppx_sexp_conv, conduit, ocaml_lwt, sexplib }:

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

  buildInputs = [ ppx_sexp_conv ];

  propagatedBuildInputs = [ conduit ocaml_lwt sexplib ];

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