mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
27 lines
373 B
Nix
27 lines
373 B
Nix
{
|
|
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";
|
|
};
|
|
}
|