summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorFabián Heredia Montiel <fabianhjr@protonmail.com>2022-08-24 08:11:37 -0500
committerFabián Heredia Montiel <fabianhjr@protonmail.com>2022-08-24 13:34:27 -0500
commit4a70e004c0cce9cc9802e3a0a3d4a37210c94f56 (patch)
tree2be69eea2bd3a2c589b2985a0ac6a55197968439 /pkgs/development/compilers
parent0b4b412714e798056424b5e01e04a8bf462a9859 (diff)
downloadnixpkgs-4a70e004c0cce9cc9802e3a0a3d4a37210c94f56.tar
nixpkgs-4a70e004c0cce9cc9802e3a0a3d4a37210c94f56.tar.gz
nixpkgs-4a70e004c0cce9cc9802e3a0a3d4a37210c94f56.tar.bz2
nixpkgs-4a70e004c0cce9cc9802e3a0a3d4a37210c94f56.tar.lz
nixpkgs-4a70e004c0cce9cc9802e3a0a3d4a37210c94f56.tar.xz
nixpkgs-4a70e004c0cce9cc9802e3a0a3d4a37210c94f56.tar.zst
nixpkgs-4a70e004c0cce9cc9802e3a0a3d4a37210c94f56.zip
scala: 3.1.0 → 3.1.3
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
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/scala/bare.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/scala/bare.nix b/pkgs/development/compilers/scala/bare.nix
index 40a70ef2baa..098d9c7edf2 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 ] ;