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
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
kafka
/
lwt.nix
blob
a6cef66b2761577951c9ae94cd3aa3382750409a
1
{ buildDunePackage
2
, kafka
3
, lwt
4
, cmdliner
5
}:
6
7
buildDunePackage rec {
8
pname = "kafka_lwt";
9
10
inherit (kafka) version useDune2 src;
11
12
buildInputs = [ cmdliner ];
13
14
propagatedBuildInputs = [ kafka lwt ];
15
16
meta = kafka.meta // {
17
description = "OCaml bindings for Kafka, Lwt bindings";
18
};
19
}