ocamlPackages.kafka: 0.4 → 0.5

This commit is contained in:
Vincent Laporte
2021-02-07 14:07:54 +01:00
committed by Vincent Laporte
parent 7467ba0b1d
commit 3c34795935
3 changed files with 30 additions and 11 deletions
@@ -0,0 +1,19 @@
{ buildDunePackage
, kafka
, lwt
, cmdliner
}:
buildDunePackage rec {
pname = "kafka_lwt";
inherit (kafka) version useDune2 src;
buildInputs = [ cmdliner ];
propagatedBuildInputs = [ kafka lwt ];
meta = kafka.meta // {
description = "OCaml bindings for Kafka, Lwt bindings";
};
}