Merge pull request #237874 from timothyklim/scala-latest

scala_3: 3.2.2 -> 3.3.0, scala_2_13: 2.13.10 -> 2.13.11, scala_2_12: 2.12.15 -> 2.12.18
This commit is contained in:
Arnout Engelen 2023-06-21 12:14:50 +02:00 committed by GitHub
commit e5b18e6ca9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -18,14 +18,14 @@ let
};
"2.12" = {
version = "2.12.15";
sha256 = "F5RePKlHjQaoQ2BWqsa5r99g3q/cPjgsbAi2A5IberY=";
version = "2.12.18";
sha256 = "naIJCET+YPrbXln39F9aU3DBdnjcn7PYMmhDxETOA5g=";
pname = "scala_2_12";
};
"2.13" = {
version = "2.13.10";
sha256 = "sha256-sBRhWZzQeGBCxktTN5D0XlG6u5HFLcRl2EaDjpcBnMQ=";
version = "2.13.11";
sha256 = "YYLdgdICPM5SczPteFsaojqY6H3IVauji6SJLcaq8eM=";
pname = "scala_2_13";
};
};

View file

@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, makeWrapper, jre, ncurses }:
stdenv.mkDerivation rec {
version = "3.2.2";
version = "3.3.0";
pname = "scala-bare";
src = fetchurl {
url = "https://github.com/lampepfl/dotty/releases/download/${version}/scala3-${version}.tar.gz";
hash = "sha256-t8Xt70LozePoDXE3IHejWOTWCEYcOZytRDKz/QxgmZg=";
hash = "sha256-Bk7lCKjjucaYQxAsg2qomJQUgCK/N688JqlGTfoQFHU=";
};
propagatedBuildInputs = [ jre ncurses.dev ] ;