25 lines
358 B
Nix
25 lines
358 B
Nix
{
|
|
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";
|
|
};
|
|
}
|