Skip to content

Commit

Permalink
apacheKafka: init at 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpds committed Nov 27, 2024
1 parent 62af84f commit 2025bee
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions nixos/tests/kafka.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ in with pkgs; {
kafka_3_6 = makeKafkaTest "kafka_3_6" { kafkaPackage = apacheKafka_3_6; };
kafka_3_7 = makeKafkaTest "kafka_3_7" { kafkaPackage = apacheKafka_3_7; };
kafka_3_8 = makeKafkaTest "kafka_3_8" { kafkaPackage = apacheKafka_3_8; };
kafka_3_9 = makeKafkaTest "kafka_3_9" { kafkaPackage = apacheKafka_3_9; };
kafka = makeKafkaTest "kafka" { kafkaPackage = apacheKafka; };
kafka_kraft = makeKafkaTest "kafka_kraft" { kafkaPackage = apacheKafka; mode = "kraft"; };
}
7 changes: 7 additions & 0 deletions pkgs/servers/apache-kafka/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

let
versionMap = {
"3_9" = {
kafkaVersion = "3.9.0";
scalaVersion = "2.13";
sha256 = "sha256-q8REAt3xA+OPGbDktE5l2pqDG6nlj9dyUEGxqhaO6NE=";
jre = jdk17_headless;
nixosTest = nixosTests.kafka.kafka_3_9;
};
"3_8" = {
kafkaVersion = "3.8.1";
scalaVersion = "2.13";
Expand Down
3 changes: 2 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7822,7 +7822,8 @@ with pkgs;
inherit (callPackages ../servers/apache-kafka { })
apacheKafka_3_6
apacheKafka_3_7
apacheKafka_3_8;
apacheKafka_3_8
apacheKafka_3_9;

apacheKafka = apacheKafka_3_8;

Expand Down

0 comments on commit 2025bee

Please sign in to comment.