2021-01-22 12:25:31 +01:00
|
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre, ncurses }:
|
2017-12-12 14:09:06 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2023-02-18 03:22:58 +01:00
|
|
|
|
version = "3.2.2";
|
2022-05-05 11:32:30 +02:00
|
|
|
|
pname = "scala-bare";
|
2017-12-12 14:09:06 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-27 22:26:25 +02:00
|
|
|
|
url = "https://github.com/lampepfl/dotty/releases/download/${version}/scala3-${version}.tar.gz";
|
2023-02-18 03:22:58 +01:00
|
|
|
|
hash = "sha256-t8Xt70LozePoDXE3IHejWOTWCEYcOZytRDKz/QxgmZg=";
|
2017-12-12 14:09:06 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-11-16 03:50:13 +01:00
|
|
|
|
propagatedBuildInputs = [ jre ncurses.dev ] ;
|
2021-02-07 10:17:39 +01:00
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2017-12-12 14:09:06 +01:00
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
mv * $out
|
|
|
|
|
'';
|
|
|
|
|
|
2022-11-21 05:30:30 +01:00
|
|
|
|
# Use preFixup instead of fixupPhase
|
|
|
|
|
# because we want the default fixupPhase as well
|
|
|
|
|
preFixup = ''
|
2017-12-12 14:09:06 +01:00
|
|
|
|
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
|
|
|
|
|
'';
|
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
|
meta = with lib; {
|
2020-10-11 07:55:05 +02:00
|
|
|
|
description = "Research platform for new language concepts and compiler technologies for Scala";
|
2017-12-12 14:09:06 +01: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.
|
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "http://dotty.epfl.ch/";
|
2017-12-12 14:09:06 +01:00
|
|
|
|
license = licenses.bsd3;
|
|
|
|
|
platforms = platforms.all;
|
2019-11-24 00:18:26 +01:00
|
|
|
|
maintainers = [maintainers.karolchmist maintainers.virusdave];
|
2017-12-12 14:09:06 +01:00
|
|
|
|
};
|
|
|
|
|
}
|