apacheKafka: Fix passthru of jre

This unbreaks the NixOS module and tests that rely on the value in order
to map the desired kafka version to a supported jre

+4 -1
+4 -1
pkgs/servers/apache-kafka/default.nix
··· 75 chmod +x $out/bin\/* 76 ''; 77 78 meta = with lib; { 79 homepage = "https://kafka.apache.org"; 80 description = "A high-throughput distributed messaging system"; ··· 83 maintainers = [ maintainers.ragge ]; 84 platforms = platforms.unix; 85 }; 86 - passthru = { inherit jdk17_headless; }; 87 }
··· 75 chmod +x $out/bin\/* 76 ''; 77 78 + passthru = { 79 + inherit jre; # Used by the NixOS module to select the supported jre 80 + }; 81 + 82 meta = with lib; { 83 homepage = "https://kafka.apache.org"; 84 description = "A high-throughput distributed messaging system"; ··· 87 maintainers = [ maintainers.ragge ]; 88 platforms = platforms.unix; 89 }; 90 }