1e1cef625b
throws no longer work with the current ci we have in nixpkgs
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";
|
|
};
|
|
}
|