about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-08-12 02:33:05 +0200
committerGitHub <noreply@github.com>2019-08-12 02:33:05 +0200
commit4ed6d362c0eb4ce317a8fc439b601df662f9a8e3 (patch)
tree8537d6116deb94bcf0cb952ec5f4d63701b8675f
parentbb77bbd3a0e6a53bd74c818219821e323c55da41 (diff)
parent93e5ae9c603f79a475d8145b2f0754b6b1e56126 (diff)
downloadnixlib-4ed6d362c0eb4ce317a8fc439b601df662f9a8e3.tar
nixlib-4ed6d362c0eb4ce317a8fc439b601df662f9a8e3.tar.gz
nixlib-4ed6d362c0eb4ce317a8fc439b601df662f9a8e3.tar.bz2
nixlib-4ed6d362c0eb4ce317a8fc439b601df662f9a8e3.tar.lz
nixlib-4ed6d362c0eb4ce317a8fc439b601df662f9a8e3.tar.xz
nixlib-4ed6d362c0eb4ce317a8fc439b601df662f9a8e3.tar.zst
nixlib-4ed6d362c0eb4ce317a8fc439b601df662f9a8e3.zip
Merge pull request #66403 from volth/patch-356
scala_2_12: 2.12.8 -> 2.12.9
-rw-r--r--pkgs/development/compilers/scala/2.12.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/scala/2.12.nix b/pkgs/development/compilers/scala/2.12.nix
index ce863ef9c915..0e4207dccac6 100644
--- a/pkgs/development/compilers/scala/2.12.nix
+++ b/pkgs/development/compilers/scala/2.12.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, makeWrapper, jre, gnugrep, coreutils }:
 
 stdenv.mkDerivation rec {
-  name = "scala-2.12.8";
+  name = "scala-2.12.9";
 
   src = fetchurl {
     url = "https://www.scala-lang.org/files/archive/${name}.tgz";
-    sha256 = "18w0vdbsp0q5rxglgalwlgkggld926bqi1fxc598rn4gh46a03j4";
+    sha256 = "0wpnxrhnhhscfk0k8yxk86akpvxbr5w1i8jb2igj2q4vax7h97sy";
   };
 
   propagatedBuildInputs = [ jre ] ;