summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-04-17 08:47:29 -0400
committerTim Steinbach <tim@nequissimus.com>2019-04-17 10:05:55 -0400
commit9429f15f3112d7dc2d30363ce8f38a2441eb855e (patch)
tree72abbd3cc4a580b8804a97d3046a197ca02cc4ef
parente9621b2c968f8da8b26ae78232c20daefa88507a (diff)
downloadnixpkgs-9429f15f3112d7dc2d30363ce8f38a2441eb855e.tar
nixpkgs-9429f15f3112d7dc2d30363ce8f38a2441eb855e.tar.gz
nixpkgs-9429f15f3112d7dc2d30363ce8f38a2441eb855e.tar.bz2
nixpkgs-9429f15f3112d7dc2d30363ce8f38a2441eb855e.tar.lz
nixpkgs-9429f15f3112d7dc2d30363ce8f38a2441eb855e.tar.xz
nixpkgs-9429f15f3112d7dc2d30363ce8f38a2441eb855e.tar.zst
nixpkgs-9429f15f3112d7dc2d30363ce8f38a2441eb855e.zip
dotty: 0.10.0-RC1 -> 0.14.0-RC1
-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 5f1d384a328..ab42eae31a6 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, ncurses }:
 
 stdenv.mkDerivation rec {
-  version = "0.10.0-RC1";
+  version = "0.14.0-RC1";
   name = "dotty-bare-${version}";
 
   src = fetchurl {
     url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz";
-    sha256 = "0s9vh0d6xx99gl0ji0dgmbq36f79c0iwfbrfqwmaclqm9yq5m54k";
+    sha256 = "0nrgsyhqjlpvnjqgb18pryr8q7knq3dq25jhp98s4wh76nssm1zr";
   };
 
   propagatedBuildInputs = [ jre ncurses.dev ] ;