repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
caqti
/
async.nix
blob
0e0da6a94bb76ef25043963c9eae7c716a7972b1
1
{ lib, buildDunePackage, async_kernel, async_unix, caqti, core_kernel }:
2
3
buildDunePackage {
4
pname = "caqti-async";
5
useDune2 = true;
6
inherit (caqti) version src;
7
8
propagatedBuildInputs = [ async_kernel async_unix caqti core_kernel ];
9
10
meta = caqti.meta // { description = "Async support for Caqti"; };
11
}