mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
11 lines
295 B
Nix
11 lines
295 B
Nix
{ lib, buildDunePackage, async_kernel, async_unix, caqti, core_kernel }:
|
|
|
|
buildDunePackage {
|
|
pname = "caqti-async";
|
|
inherit (caqti) version src;
|
|
|
|
propagatedBuildInputs = [ async_kernel async_unix caqti core_kernel ];
|
|
|
|
meta = caqti.meta // { description = "Async support for Caqti"; };
|
|
}
|