spark: 3.2.2 -> 3.4.0

This commit is contained in:
Robert Scott
2023-05-08 15:46:58 +01:00
parent cb0f64e45d
commit a740532ae5
2 changed files with 9 additions and 2 deletions
@@ -31,7 +31,8 @@ let
mkdir -p $out/{lib/${untarDir}/conf,bin,/share/java}
mv * $out/lib/${untarDir}
cp $out/lib/${untarDir}/conf/log4j.properties{.template,}
cp $out/lib/${untarDir}/conf/log4j.properties{.template,} || \
cp $out/lib/${untarDir}/conf/log4j2.properties{.template,}
cat > $out/lib/${untarDir}/conf/spark-env.sh <<- EOF
export JAVA_HOME="${jdk}"
@@ -70,6 +71,11 @@ let
};
in
{
spark_3_4 = spark rec {
pname = "spark";
version = "3.4.0";
sha256 = "sha256-0y80dRYzb6Ceu6MlGQHtpMdzOob/TBg6kf8dtF6KyCk=";
};
spark_3_2 = spark rec {
pname = "spark";
version = "3.2.2";
+2 -1
View File
@@ -17172,10 +17172,11 @@ with pkgs;
smiley-sans = callPackage ../data/fonts/smiley-sans { };
inherit (callPackages ../applications/networking/cluster/spark { })
spark_3_4
spark_3_2
spark_3_1
spark_2_4;
spark3 = spark_3_2;
spark3 = spark_3_4;
spark2 = spark_2_4;
spark = spark3;