depot/third_party/nixpkgs/pkgs/development/ocaml-modules/conduit/async.nix

20 lines
428 B
Nix
Raw Normal View History

{ lib, buildDunePackage, async, async_ssl, ppx_sexp_conv, ppx_here, uri, conduit }:
buildDunePackage {
pname = "conduit-async";
inherit (conduit)
version
src
minimumOCamlVersion
useDune2
;
buildInputs = [ ppx_sexp_conv ppx_here ];
propagatedBuildInputs = [ async async_ssl conduit uri ];
meta = conduit.meta // {
description = "A network connection establishment library for Async";
};
}