Skip to content

Commit

Permalink
spark: bring version naming in line with hadoop
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorBaker committed Mar 10, 2022
1 parent 05c12ee commit 246794d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions pkgs/applications/networking/cluster/spark/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,17 @@ let
};
in
{
spark3_2_1 = spark rec {
spark_3_2 = spark rec {
pname = "spark";
version = "3.2.1";
sha256 = "0kxdqczwmj6pray0h8h1qhygni9m82jzznw5fbv9hrxrkq1v182d";
};
spark3_1_2 = spark rec {
spark_3_1 = spark rec {
pname = "spark";
version = "3.1.2";
sha256 = "1bgh2y6jm7wqy6yc40rx68xkki31i3jiri2yixb1bm0i9pvsj9yf";
};
spark2 = spark rec {
spark_2_4 = spark rec {
pname = "spark";
version = "2.4.8";
sha256 = "1mkyq0gz9fiav25vr0dba5ivp0wh0mh7kswwnx8pvsmb6wbwyfxv";
Expand Down
9 changes: 5 additions & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14095,10 +14095,11 @@ with pkgs;
self = pkgsi686Linux.callPackage ../development/interpreters/self { };

inherit (callPackages ../applications/networking/cluster/spark { })
spark3_2_1
spark3_1_2
spark2;
spark3 = spark3_1_2;
spark_3_2
spark_3_1
spark_2_4;
spark3 = spark_3_2;
spark2 = spark_2_4;
spark = spark3;

sparkleshare = callPackage ../applications/version-management/sparkleshare { };
Expand Down

0 comments on commit 246794d

Please sign in to comment.