summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/caqti/async.nix
blob: 0e0da6a94bb76ef25043963c9eae7c716a7972b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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"; };
}