mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
1b6764da4e
Except for caqti-type-calendar, whose most recent version number is 1.2.0.
12 lines
314 B
Nix
12 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"; };
|
|
}
|