2018-11-16 03:50:13 +01:00
|
|
|
|
{ stdenv, fetchurl, makeWrapper, jre, ncurses }:
|
2017-12-12 14:09:06 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-17 14:47:29 +02:00
|
|
|
|
version = "0.14.0-RC1";
|
2017-12-12 14:09:06 +01:00
|
|
|
|
name = "dotty-bare-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz";
|
2019-04-17 14:47:29 +02:00
|
|
|
|
sha256 = "0nrgsyhqjlpvnjqgb18pryr8q7knq3dq25jhp98s4wh76nssm1zr";
|
2017-12-12 14:09:06 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-11-16 03:50:13 +01:00
|
|
|
|
propagatedBuildInputs = [ jre ncurses.dev ] ;
|
2017-12-12 14:09:06 +01:00
|
|
|
|
buildInputs = [ makeWrapper ] ;
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
mv * $out
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
fixupPhase = ''
|
|
|
|
|
bin_files=$(find $out/bin -type f ! -name common)
|
|
|
|
|
for f in $bin_files ; do
|
2018-11-16 03:50:13 +01:00
|
|
|
|
wrapProgram $f --set JAVA_HOME ${jre} --prefix PATH : '${ncurses.dev}/bin'
|
2017-12-12 14:09:06 +01:00
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "Research platform for new language concepts and compiler technologies for Scala.";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Dotty is a platform to try out new language concepts and compiler technologies for Scala.
|
|
|
|
|
The focus is mainly on simplification. We remove extraneous syntax (e.g. no XML literals),
|
|
|
|
|
and try to boil down Scala’s types into a smaller set of more fundamental constructs.
|
|
|
|
|
The theory behind these constructs is researched in DOT, a calculus for dependent object types.
|
|
|
|
|
'';
|
|
|
|
|
homepage = http://dotty.epfl.ch/;
|
|
|
|
|
license = licenses.bsd3;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = [maintainers.karolchmist];
|
|
|
|
|
};
|
|
|
|
|
}
|