depot/pkgs/development/ocaml-modules/conduit/async.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00: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";
};
}