about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-05-11 01:03:40 +0200
committerGitHub <noreply@github.com>2020-05-11 01:03:40 +0200
commit3d941ff63302c40f0bd48ff80f623f3383c6dffe (patch)
tree9cb1d2391c80be131288158eba1574db8684a1b1 /pkgs
parentd232eb13b56ef5e5a8087e2566c5a0de4595a085 (diff)
parent37cf3a60edc06fa3f895a2d3842e6aa72a1235c0 (diff)
downloadnixlib-3d941ff63302c40f0bd48ff80f623f3383c6dffe.tar
nixlib-3d941ff63302c40f0bd48ff80f623f3383c6dffe.tar.gz
nixlib-3d941ff63302c40f0bd48ff80f623f3383c6dffe.tar.bz2
nixlib-3d941ff63302c40f0bd48ff80f623f3383c6dffe.tar.lz
nixlib-3d941ff63302c40f0bd48ff80f623f3383c6dffe.tar.xz
nixlib-3d941ff63302c40f0bd48ff80f623f3383c6dffe.tar.zst
nixlib-3d941ff63302c40f0bd48ff80f623f3383c6dffe.zip
Merge pull request #87480 from r-ryantm/auto-update/scala
scala: 2.13.1 -> 2.13.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/scala/2.13.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/scala/2.13.nix b/pkgs/development/compilers/scala/2.13.nix
index fb6d663f7490..04086321bef1 100644
--- a/pkgs/development/compilers/scala/2.13.nix
+++ b/pkgs/development/compilers/scala/2.13.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, makeWrapper, jre, gnugrep, coreutils }:
 
 stdenv.mkDerivation rec {
-  name = "scala-2.13.1";
+  name = "scala-2.13.2";
 
   src = fetchurl {
     url = "https://www.scala-lang.org/files/archive/${name}.tgz";
-    sha256 = "1nq49acx3j6vnw0lhyrfqa23f671y3kc9lja4nki0j73jk2cq639";
+    sha256 = "1gvdxwlhgjmn8i5a8kcp19700rscjq9ylb35p8vj7nqys94zjkap";
   };
 
   propagatedBuildInputs = [ jre ] ;