ocamlPackages.kafka_lwt: disable for OCaml ≥ 5.0

This commit is contained in:
Vincent Laporte 2023-10-06 07:17:26 +02:00
parent b3e14b9045
commit ff910956e9
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 6 additions and 3 deletions

View File

@ -5,8 +5,6 @@ buildDunePackage rec {
pname = "kafka";
version = "0.5";
useDune2 = true;
src = fetchurl {
url = "https://github.com/didier-wenzek/ocaml-kafka/releases/download/${version}/kafka-${version}.tbz";
sha256 = "0m9212yap0a00hd0f61i4y4fna3141p77qj3mm7jl1h4q60jdhvy";

View File

@ -1,13 +1,18 @@
{ buildDunePackage
, ocaml
, lib
, kafka
, lwt
, cmdliner
}:
lib.throwIf (lib.versionAtLeast ocaml.version "5.0")
"kafka_lwt is not available for OCaml ${ocaml.version}"
buildDunePackage rec {
pname = "kafka_lwt";
inherit (kafka) version useDune2 src;
inherit (kafka) version src;
buildInputs = [ cmdliner ];