Skip to content

Commit

Permalink
scala: 0.14.0-RC7 -> 0.14.0-RC8
Browse files Browse the repository at this point in the history
  • Loading branch information
anpin committed Nov 27, 2024
1 parent 42d4628 commit 6815d1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/kernels/scala/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
requiredRuntimePackages ? [],
runtimePackages ? [],
extraKernelSpc,
scala ? pkgs.scala,
scala ? pkgs.scala_2_12,
coursier ? pkgs.coursier,
jdk ? pkgs.jdk,
jre ? pkgs.jre,
Expand All @@ -37,7 +37,7 @@

almondSh = let
baseName = "almond";
version = "0.14.0-RC7";
version = "0.14.0-RC8";
scalaVersion = scala.version;
deps = stdenv.mkDerivation {
name = "${baseName}-deps-${version}";
Expand All @@ -51,7 +51,7 @@

outputHashMode = "recursive";
outputHashAlgo = "sha256";
outputHash = "sha256-LJ9eWV3FRhNl8pZvMQgwD43uMmeQoIi9v9d4SOzYcmg=";
outputHash = "sha256-fJ+CaFA5uUkoBPFddxAWJGHdIduHc9ao1kBRcvnSstY=";
};
in
stdenv.mkDerivation {
Expand Down Expand Up @@ -114,7 +114,7 @@
{
scala = lib.mkOption {
type = types.package;
default = config.nixpkgs.scala;
default = config.nixpkgs.scala_2_12;
example = lib.literalExpression "pkgs.scala";
description = lib.mdDoc ''
Scala package to use with almond.
Expand Down

0 comments on commit 6815d1b

Please sign in to comment.