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

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

  buildInputs = [ ppx_sexp_conv ];

  propagatedBuildInputs = [ conduit lwt sexplib ];

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