mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
20 lines
301 B
Nix
20 lines
301 B
Nix
{ 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";
|
|
};
|
|
}
|