biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / conduit / lwt.nix
blob641d57db10e397798ff747622c2227d3a234ceaf
1 { buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
3 buildDunePackage {
4   pname = "conduit-lwt";
5   inherit (conduit) version src;
7   buildInputs = [ ppx_sexp_conv ];
9   propagatedBuildInputs = [ conduit lwt sexplib ];
11   meta = conduit.meta // {
12     description = "A network connection establishment library for Lwt";
13   };