2021-02-05 17:12:51 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre, ncurses }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-05-28 09:39:13 +00:00
|
|
|
|
version = "3.0.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
pname = "dotty-bare";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-03 20:48:10 +00:00
|
|
|
|
url = "https://github.com/lampepfl/dotty/releases/download/${version}/scala3-${version}.tar.gz";
|
2021-05-28 09:39:13 +00:00
|
|
|
|
sha256 = "/F2yv4XH0I3oC3IFqj+jwpzShCtTEfTzg+J26Xl+P+Y=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ jre ncurses.dev ] ;
|
2021-03-09 03:18:52 +00:00
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
mv * $out
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
fixupPhase = ''
|
|
|
|
|
bin_files=$(find $out/bin -type f ! -name common)
|
|
|
|
|
for f in $bin_files ; do
|
|
|
|
|
wrapProgram $f --set JAVA_HOME ${jre} --prefix PATH : '${ncurses.dev}/bin'
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-10-19 00:13:06 +00:00
|
|
|
|
description = "Research platform for new language concepts and compiler technologies for Scala";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
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 maintainers.virusdave];
|
|
|
|
|
};
|
|
|
|
|
}
|