insync: 3.9.3.60019 -> 3.9.4.60020 (#363380)
[NixPkgs.git] / pkgs / development / ocaml-modules / conduit / async.nix
blobc883cf181c8eab054b4c95f3159805a6edbe7287
2   buildDunePackage,
3   async,
4   ppx_sexp_conv,
5   ppx_here,
6   uri,
7   conduit,
8   core,
9   ipaddr,
10   ipaddr-sexp,
11   sexplib0,
14 buildDunePackage {
15   pname = "conduit-async";
16   inherit (conduit)
17     version
18     src
19     ;
21   buildInputs = [
22     ppx_sexp_conv
23     ppx_here
24   ];
26   propagatedBuildInputs = [
27     async
28     conduit
29     uri
30     ipaddr
31     ipaddr-sexp
32     core
33     sexplib0
34   ];
36   meta = conduit.meta // {
37     description = "Network connection establishment library for Async";
38   };