at 22.05-pre 30 lines 531 B view raw
1{ lib, buildDunePackage, async, async_ssl, ppx_sexp_conv, ppx_here, uri, conduit 2, core, ipaddr, ipaddr-sexp, sexplib 3}: 4 5buildDunePackage { 6 pname = "conduit-async"; 7 inherit (conduit) 8 version 9 src 10 minimumOCamlVersion 11 useDune2 12 ; 13 14 buildInputs = [ ppx_sexp_conv ppx_here ]; 15 16 propagatedBuildInputs = [ 17 async 18 async_ssl 19 conduit 20 uri 21 ipaddr 22 ipaddr-sexp 23 core 24 sexplib 25 ]; 26 27 meta = conduit.meta // { 28 description = "A network connection establishment library for Async"; 29 }; 30}