1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

dotty: 0.14.0-RC1 -> 0.20.0-RC1

Update Scala Dotty to latest version.
This commit is contained in:
Dave Nicponski 2019-11-23 18:18:26 -05:00
parent d95112aa73
commit 974ff0fc17

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, ncurses }: { stdenv, fetchurl, makeWrapper, jre, ncurses }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.14.0-RC1"; version = "0.20.0-RC1";
pname = "dotty-bare"; pname = "dotty-bare";
src = fetchurl { src = fetchurl {
url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz"; url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz";
sha256 = "0nrgsyhqjlpvnjqgb18pryr8q7knq3dq25jhp98s4wh76nssm1zr"; sha256 = "08qs3m32cbh6516gcwraa1b5k935awmjxls6kg6xll722hkdd9l6";
}; };
propagatedBuildInputs = [ jre ncurses.dev ] ; propagatedBuildInputs = [ jre ncurses.dev ] ;
@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
homepage = http://dotty.epfl.ch/; homepage = http://dotty.epfl.ch/;
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.all; platforms = platforms.all;
maintainers = [maintainers.karolchmist]; maintainers = [maintainers.karolchmist maintainers.virusdave];
}; };
} }