depot/third_party/nixpkgs/pkgs/development/ocaml-modules/caqti/async.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

11 lines
314 B
Nix

{ lib, buildDunePackage, async_kernel, async_unix, caqti, core_kernel }:
buildDunePackage {
pname = "caqti-async";
useDune2 = true;
inherit (caqti) version src;
propagatedBuildInputs = [ async_kernel async_unix caqti core_kernel ];
meta = caqti.meta // { description = "Async support for Caqti"; };
}