about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorillustris <rharikrishnan95@gmail.com>2023-11-04 13:14:10 +0530
committerillustris <rharikrishnan95@gmail.com>2023-11-04 15:28:13 +0530
commita6ddad641da57aa4985777185324245c5bea11be (patch)
tree703028c66f5121d3143c19c6a7b1dcafba4afbcd /pkgs/applications/networking/cluster
parentef9732e11f242a17b5b1a7e58397006a3c8f77d9 (diff)
spark: remove 3.2.4
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/spark/default.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/pkgs/applications/networking/cluster/spark/default.nix b/pkgs/applications/networking/cluster/spark/default.nix
index 0d5d2c1e4eb93..bd10b78c1f6a4 100644
--- a/pkgs/applications/networking/cluster/spark/default.nix
+++ b/pkgs/applications/networking/cluster/spark/default.nix
@@ -30,7 +30,7 @@ let
         mv * $out/
         for n in $(find $out/bin -type f -executable ! -name "find-spark-home"); do
           wrapProgram "$n" --set JAVA_HOME "${jdk}" \
-            --run "[ -z SPARK_DIST_CLASSPATH ] && export SPARK_DIST_CLASSPATH=$(${finalAttrs.hadoop}/bin/hadoop classpath)" \
+            --run "[ -z $SPARK_DIST_CLASSPATH ] && export SPARK_DIST_CLASSPATH=$(${finalAttrs.hadoop}/bin/hadoop classpath)" \
             ${lib.optionalString RSupport ''--set SPARKR_R_SHELL "${R}/bin/R"''} \
             --prefix PATH : "${
               lib.makeBinPath (
@@ -79,11 +79,4 @@ in
     hash = "sha256-YtHxRYTwrwSle3UpFjRSwKcnLFj2m9/zLBENH/HVzuM=";
     pysparkPython = python310;
   };
-  spark_3_2 = spark rec {
-    pname = "spark";
-    version = "3.2.4";
-    hash = "sha256-xL4W+dTWbvmmncq3/8iXmhp24rp5SftvoRfkTyxCI8E=";
-    pysparkPython = python310;
-    extraMeta.knownVulnerabilities = [ "CVE-2023-22946" ];
-  };
 }