summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorKarol Chmist <karolchmist@users.noreply.github.com>2018-08-21 11:46:37 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-21 11:46:37 +0200
commita875fcc5d0231b60609501d7f5ce14a8416d0686 (patch)
tree93a6f2951c7c9224a126fc83cf72e7fa23d470d6 /pkgs/development/compilers
parent6864680cbb5931b1903e39ce4fc4e07d0505c915 (diff)
downloadnixlib-a875fcc5d0231b60609501d7f5ce14a8416d0686.tar
nixlib-a875fcc5d0231b60609501d7f5ce14a8416d0686.tar.gz
nixlib-a875fcc5d0231b60609501d7f5ce14a8416d0686.tar.bz2
nixlib-a875fcc5d0231b60609501d7f5ce14a8416d0686.tar.lz
nixlib-a875fcc5d0231b60609501d7f5ce14a8416d0686.tar.xz
nixlib-a875fcc5d0231b60609501d7f5ce14a8416d0686.tar.zst
nixlib-a875fcc5d0231b60609501d7f5ce14a8416d0686.zip
dotty: 0.8.0 -> 0.9.0 (#45423)
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/scala/dotty-bare.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/scala/dotty-bare.nix b/pkgs/development/compilers/scala/dotty-bare.nix
index 0c9625c04d5c..96d19725c8bb 100644
--- a/pkgs/development/compilers/scala/dotty-bare.nix
+++ b/pkgs/development/compilers/scala/dotty-bare.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, makeWrapper, jre }:
 
 stdenv.mkDerivation rec {
-  version = "0.8.0-RC1";
+  version = "0.9.0-RC1";
   name = "dotty-bare-${version}";
 
   src = fetchurl {
     url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz";
-    sha256 = "e5b7a9bb6f1007146a440ddfff871cc312075e5d69b9ab7e279ad7c3514f7065";
+    sha256 = "1c24692081231415cb560ff1288ede3f0d28c8b994ce8ca7c7b06edf7978bfb8";
   };
 
   propagatedBuildInputs = [ jre ] ;