2017-01-12 17:51:29 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre, gnugrep, coreutils }:
|
2010-03-30 00:36:25 +01:00
|
|
|
|
2008-04-11 23:10:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-07-07 12:52:19 +01:00
|
|
|
name = "scala-2.13.3";
|
2008-04-11 23:10:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.scala-lang.org/files/archive/${name}.tgz";
|
2020-07-07 12:52:19 +01:00
|
|
|
sha256 = "0zv9w9f6g2cfydsvp8mqcfgv2v3487xp4ca1qndg6v7jrhdp7wy9";
|
2008-04-11 23:10:44 +01:00
|
|
|
};
|
|
|
|
|
2015-11-30 14:17:01 +00:00
|
|
|
propagatedBuildInputs = [ jre ] ;
|
|
|
|
buildInputs = [ makeWrapper ] ;
|
2013-11-09 21:44:05 +00:00
|
|
|
|
2008-04-11 23:10:44 +01:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out
|
2014-06-15 11:16:36 +01:00
|
|
|
rm "bin/"*.bat
|
2008-04-11 23:10:44 +01:00
|
|
|
mv * $out
|
2013-11-09 21:44:05 +00:00
|
|
|
|
2017-03-12 16:24:43 +00:00
|
|
|
# put docs in correct subdirectory
|
|
|
|
mkdir -p $out/share/doc
|
|
|
|
mv $out/doc $out/share/doc/scala
|
2020-01-19 18:13:06 +00:00
|
|
|
mv $out/{LICENSE,NOTICE} $out/share/doc/scala
|
2017-03-12 16:24:43 +00:00
|
|
|
|
2013-11-09 21:44:05 +00:00
|
|
|
for p in $(ls $out/bin/) ; do
|
2017-01-12 17:51:29 +00:00
|
|
|
wrapProgram $out/bin/$p \
|
|
|
|
--prefix PATH ":" ${coreutils}/bin \
|
|
|
|
--prefix PATH ":" ${gnugrep}/bin \
|
|
|
|
--prefix PATH ":" ${jre}/bin \
|
|
|
|
--set JAVA_HOME ${jre}
|
2013-11-09 21:44:05 +00:00
|
|
|
done
|
2008-04-11 23:10:44 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "General purpose programming language";
|
2010-03-30 00:36:25 +01:00
|
|
|
longDescription = ''
|
|
|
|
Scala is a general purpose programming language designed to express
|
|
|
|
common programming patterns in a concise, elegant, and type-safe way.
|
|
|
|
It smoothly integrates features of object-oriented and functional
|
|
|
|
languages, enabling Java and other programmers to be more productive.
|
2012-08-16 14:49:00 +01:00
|
|
|
Code sizes are typically reduced by a factor of two to three when
|
2010-03-30 00:36:25 +01:00
|
|
|
compared to an equivalent Java application.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.scala-lang.org/";
|
2014-11-19 18:54:24 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2013-02-26 16:18:16 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-04-11 23:10:44 +01:00
|
|
|
};
|
|
|
|
}
|