summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-02-09 07:58:59 +0000
committerGitHub <noreply@github.com>2018-02-09 07:58:59 +0000
commit4db906e185b451ea16ea89a2629b5b21db4f0ec7 (patch)
treeae268af2b0ac14fab6f2282fafef5700559f8b2e /pkgs
parent1c73182f92fefb2d0a385a7377ae7255e1c562f5 (diff)
parent7bfc62a3778d6d4388b817e172aa6262f6871b41 (diff)
downloadnixlib-4db906e185b451ea16ea89a2629b5b21db4f0ec7.tar
nixlib-4db906e185b451ea16ea89a2629b5b21db4f0ec7.tar.gz
nixlib-4db906e185b451ea16ea89a2629b5b21db4f0ec7.tar.bz2
nixlib-4db906e185b451ea16ea89a2629b5b21db4f0ec7.tar.lz
nixlib-4db906e185b451ea16ea89a2629b5b21db4f0ec7.tar.xz
nixlib-4db906e185b451ea16ea89a2629b5b21db4f0ec7.tar.zst
nixlib-4db906e185b451ea16ea89a2629b5b21db4f0ec7.zip
Merge pull request #34730 from karolchmist/dotty-bump-0.6.0
dotty: 0.4.0 -> 0.6.0
Diffstat (limited to 'pkgs')
-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 60cb3e9a2029..bff73337e9e8 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.4.0-RC1";
+  version = "0.6.0-RC1";
   name = "dotty-bare-${version}";
 
   src = fetchurl {
     url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz";
-    sha256 = "1d1ab08b85bd6898ce6273fa50818de0d314fc6e5377fb6ee05494827043321b";
+    sha256 = "de1f5e72fb0e0b4c377d6cec93f565eff49769698cd8be01b420705fe8475ca4";
   };
 
   propagatedBuildInputs = [ jre ] ;