2017-11-10 10:43:18 +00:00
|
|
|
|
{ stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
version = "0.4.0-RC1";
|
|
|
|
|
name = "dotty-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/lampepfl/dotty/releases/download/${version}/${name}.tar.gz";
|
|
|
|
|
sha256 = "1d1ab08b85bd6898ce6273fa50818de0d314fc6e5377fb6ee05494827043321b";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ jre ] ;
|
|
|
|
|
buildInputs = [ makeWrapper ] ;
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
mv * $out
|
|
|
|
|
|
2017-11-13 08:15:43 +00:00
|
|
|
|
mkdir -p $out/shared
|
|
|
|
|
mv $out/bin/common $out/shared
|
|
|
|
|
'';
|
2017-11-10 10:43:18 +00:00
|
|
|
|
|
2017-11-13 08:15:43 +00:00
|
|
|
|
fixupPhase = ''
|
|
|
|
|
for file in $out/bin/* ; do
|
|
|
|
|
substituteInPlace $file \
|
|
|
|
|
--replace '$PROG_HOME/bin/common' $out/shared/common
|
2017-11-10 10:43:18 +00:00
|
|
|
|
|
2017-11-13 08:15:43 +00:00
|
|
|
|
wrapProgram $file \
|
|
|
|
|
--set JAVA_HOME ${jre}
|
|
|
|
|
done
|
2017-11-10 10:43:18 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2017-11-13 08:15:43 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2017-11-10 10:43:18 +00:00
|
|
|
|
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/;
|
2017-11-13 08:15:43 +00:00
|
|
|
|
license = licenses.bsd3;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = [maintainers.karolchmist];
|
2017-11-10 10:43:18 +00:00
|
|
|
|
};
|
|
|
|
|
}
|