Files
jopejoe1 1e1cef625b ocamlPackages: swap throws to meta.broken
throws no longer work with the current ci we have in nixpkgs
2025-10-18 22:23:06 +02:00

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";
};
}