From 4a70e004c0cce9cc9802e3a0a3d4a37210c94f56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Wed, 24 Aug 2022 08:11:37 -0500 Subject: [PATCH] =?UTF-8?q?scala:=203.1.0=20=E2=86=92=203.1.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release notes: - https://github.com/lampepfl/dotty/releases/tag/3.1.1 - https://github.com/lampepfl/dotty/releases/tag/3.1.2 - https://github.com/lampepfl/dotty/releases/tag/3.1.3 --- pkgs/development/compilers/scala/bare.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/scala/bare.nix b/pkgs/development/compilers/scala/bare.nix index 40a70ef2baa4..098d9c7edf2c 100644 --- a/pkgs/development/compilers/scala/bare.nix +++ b/pkgs/development/compilers/scala/bare.nix @@ -1,12 +1,12 @@ { lib, stdenv, fetchurl, makeWrapper, jre, ncurses }: stdenv.mkDerivation rec { - version = "3.1.0"; + version = "3.1.3"; pname = "scala-bare"; src = fetchurl { url = "https://github.com/lampepfl/dotty/releases/download/${version}/scala3-${version}.tar.gz"; - sha256 = "9bsZ2FtIb6AvA3W3r2Vv0dPNicuYjMBz3X48z45Avv8="; + sha256 = "sha256-nh7v3Kt3stKpBXs9b3gwFZHpwnUTySQT88NTp3CT8tc="; }; propagatedBuildInputs = [ jre ncurses.dev ] ;