depot/third_party/nixpkgs/pkgs/development/ocaml-modules/conduit/async.nix
Default email 24fdeddc0a Project import generated by Copybara.
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
2024-10-23 09:41:50 +03:00

27 lines
464 B
Nix

{ buildDunePackage, async, ppx_sexp_conv, ppx_here, uri, conduit
, core, ipaddr, ipaddr-sexp, sexplib0
}:
buildDunePackage {
pname = "conduit-async";
inherit (conduit)
version
src
;
buildInputs = [ ppx_sexp_conv ppx_here ];
propagatedBuildInputs = [
async
conduit
uri
ipaddr
ipaddr-sexp
core
sexplib0
];
meta = conduit.meta // {
description = "Network connection establishment library for Async";
};
}