Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 28 lines 494 B view raw
1{ buildDunePackage, async, async_ssl ? null, 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 ; 11 12 buildInputs = [ ppx_sexp_conv ppx_here ]; 13 14 propagatedBuildInputs = [ 15 async 16 async_ssl 17 conduit 18 uri 19 ipaddr 20 ipaddr-sexp 21 core 22 sexplib 23 ]; 24 25 meta = conduit.meta // { 26 description = "Network connection establishment library for Async"; 27 }; 28}