biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / conduit / async.nix
blob5aaf16c46de5386d4195fc001b06e38db6806903
1 { lib, buildDunePackage, async, async_ssl ? null, ppx_sexp_conv, ppx_here, uri, conduit
2 , core, ipaddr, ipaddr-sexp, sexplib
3 }:
5 buildDunePackage {
6   pname = "conduit-async";
7   inherit (conduit)
8     version
9     src
10     ;
12   buildInputs = [ ppx_sexp_conv ppx_here ];
14   propagatedBuildInputs = [
15     async
16     async_ssl
17     conduit
18     uri
19     ipaddr
20     ipaddr-sexp
21     core
22     sexplib
23   ];
25   meta = conduit.meta // {
26     description = "A network connection establishment library for Async";
27   };