summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/kafka/lwt.nix
blob: 0ee37ea0f657bd28f493e65996407ab446c5bacf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  buildDunePackage,
  ocaml,
  lib,
  kafka,
  lwt,
  cmdliner,
}:

buildDunePackage {
  pname = "kafka_lwt";

  inherit (kafka) version src;

  buildInputs = [ cmdliner ];

  propagatedBuildInputs = [
    kafka
    lwt
  ];

  meta = kafka.meta // {
    description = "OCaml bindings for Kafka, Lwt bindings";
    broken = lib.versionAtLeast ocaml.version "5.0";
  };
}