nixpkgs/pkgs/development/ocaml-modules/caqti/async.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
358 B
Nix
Raw Normal View History

{
buildDunePackage,
async_kernel,
async_unix,
caqti,
core_kernel,
}:
buildDunePackage {
pname = "caqti-async";
inherit (caqti) version src;
2024-02-22 06:32:37 +00:00
minimalOCamlVersion = "4.14";
2023-04-05 04:17:18 +00:00
propagatedBuildInputs = [
async_kernel
async_unix
caqti
core_kernel
];
meta = caqti.meta // {
description = "Async support for Caqti";
};
}