about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/caqti/async.nix
blob: 22755be193df6dcd2a52e1209d4c7a3e3c027398 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, buildDunePackage, async_kernel, async_unix, caqti, core_kernel }:

buildDunePackage {
  pname = "caqti-async";
  inherit (caqti) version src;

  minimalOCamlVersion = "4.14";

  propagatedBuildInputs = [ async_kernel async_unix caqti core_kernel ];

  meta = caqti.meta // { description = "Async support for Caqti"; };
}