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 {
|
2023-10-09 19:29:22 +00:00
|
|
|
|
version = "3.3.1";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
pname = "scala-bare";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-03 20:48:10 +00:00
|
|
|
|
url = "https://github.com/lampepfl/dotty/releases/download/${version}/scala3-${version}.tar.gz";
|
2023-10-09 19:29:22 +00:00
|
|
|
|
hash = "sha256-EcDqD3HEOvD7GzVd3kFL/vAaYMFyk2deI6RNAlJpzRU=";
|
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
|
|
|
|
|
'';
|
|
|
|
|
|
2022-11-27 09:42:12 +00:00
|
|
|
|
# Use preFixup instead of fixupPhase
|
|
|
|
|
# because we want the default fixupPhase as well
|
|
|
|
|
preFixup = ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
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;
|
2023-10-09 19:29:22 +00:00
|
|
|
|
maintainers = with maintainers; [ karolchmist virusdave kashw2 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|