nixpkgs/pkgs/development/ocaml-modules/kafka/lwt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
301 B
Nix
Raw Normal View History

2021-02-01 00:54:02 +03:00
{ 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";
};
}