2020-09-19 14:38:51 +01:00
|
|
|
{ stdenv, fetchurl, jre8, makeWrapper, bash, coreutils, gnugrep, gnused, ps,
|
2017-11-02 17:48:22 +00:00
|
|
|
majorVersion ? "1.0" }:
|
2015-01-28 22:06:28 +00:00
|
|
|
|
|
|
|
let
|
2016-05-28 18:46:46 +01:00
|
|
|
versionMap = {
|
2020-01-11 02:01:24 +00:00
|
|
|
"2.4" = {
|
2020-06-20 14:31:47 +01:00
|
|
|
kafkaVersion = "2.4.1";
|
2020-01-11 02:01:24 +00:00
|
|
|
scalaVersion = "2.12";
|
2020-06-20 14:31:47 +01:00
|
|
|
sha256 = "0ahsprmpjz026mhbr79187wfdrxcg352iipyfqfrx68q878wnxr1";
|
|
|
|
};
|
|
|
|
"2.5" = {
|
|
|
|
kafkaVersion = "2.5.0";
|
|
|
|
scalaVersion = "2.13";
|
|
|
|
sha256 = "0w3g7ii8x63m2blv2a8c491d0diczpliaqm9f7w5yn98hikh0aqi";
|
2020-01-11 02:01:24 +00:00
|
|
|
};
|
2016-05-28 18:46:46 +01:00
|
|
|
};
|
2020-09-19 14:38:51 +01:00
|
|
|
|
|
|
|
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
2015-01-28 22:06:28 +00:00
|
|
|
in
|
|
|
|
|
2016-05-28 18:46:46 +01:00
|
|
|
with versionMap.${majorVersion};
|
|
|
|
|
2015-01-28 22:06:28 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "${scalaVersion}-${kafkaVersion}";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "apache-kafka";
|
2015-01-28 22:06:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://apache/kafka/${kafkaVersion}/kafka_${version}.tgz";
|
2016-05-28 18:46:46 +01:00
|
|
|
inherit sha256;
|
2015-01-28 22:06:28 +00:00
|
|
|
};
|
|
|
|
|
2019-10-03 10:48:29 +01:00
|
|
|
buildInputs = [ jre makeWrapper bash gnugrep gnused coreutils ps ];
|
2015-01-28 22:06:28 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -R config libs $out
|
|
|
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp bin/kafka* $out/bin
|
2018-05-31 21:03:48 +01:00
|
|
|
cp bin/connect* $out/bin
|
2015-01-28 22:06:28 +00:00
|
|
|
|
|
|
|
# allow us the specify logging directory using env
|
|
|
|
substituteInPlace $out/bin/kafka-run-class.sh \
|
2015-04-27 03:58:12 +01:00
|
|
|
--replace 'LOG_DIR="$base_dir/logs"' 'LOG_DIR="$KAFKA_LOG_DIR"'
|
2015-01-28 22:06:28 +00:00
|
|
|
|
2019-10-03 10:48:29 +01:00
|
|
|
substituteInPlace $out/bin/kafka-server-stop.sh \
|
|
|
|
--replace 'ps' '${ps}/bin/ps'
|
|
|
|
|
2015-01-28 22:06:28 +00:00
|
|
|
for p in $out/bin\/*.sh; do
|
|
|
|
wrapProgram $p \
|
|
|
|
--set JAVA_HOME "${jre}" \
|
|
|
|
--set KAFKA_LOG_DIR "/tmp/apache-kafka-logs" \
|
2018-07-06 13:18:42 +01:00
|
|
|
--prefix PATH : "${bash}/bin:${coreutils}/bin:${gnugrep}/bin:${gnused}/bin"
|
2015-01-28 22:06:28 +00:00
|
|
|
done
|
|
|
|
chmod +x $out/bin\/*
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://kafka.apache.org";
|
2015-01-28 22:06:28 +00:00
|
|
|
description = "A high-throughput distributed messaging system";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ragge ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|