2017-01-12 18:51:29 +01:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre, gnugrep, coreutils }:
|
2010-03-30 01:36:25 +02:00
|
|
|
|
2008-04-12 00:10:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-09-19 15:52:12 +02:00
|
|
|
name = "scala-2.13.1";
|
2008-04-12 00:10:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.scala-lang.org/files/archive/${name}.tgz";
|
2019-09-19 15:52:12 +02:00
|
|
|
sha256 = "1nq49acx3j6vnw0lhyrfqa23f671y3kc9lja4nki0j73jk2cq639";
|
2008-04-12 00:10:44 +02:00
|
|
|
};
|
|
|
|
|
2015-11-30 15:17:01 +01:00
|
|
|
propagatedBuildInputs = [ jre ] ;
|
|
|
|
buildInputs = [ makeWrapper ] ;
|
2013-11-09 22:44:05 +01:00
|
|
|
|
2008-04-12 00:10:44 +02:00
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out
|
2014-06-15 12:16:36 +02:00
|
|
|
rm "bin/"*.bat
|
2008-04-12 00:10:44 +02:00
|
|
|
mv * $out
|
2013-11-09 22:44:05 +01:00
|
|
|
|
2017-03-12 17:24:43 +01:00
|
|
|
# put docs in correct subdirectory
|
|
|
|
mkdir -p $out/share/doc
|
|
|
|
mv $out/doc $out/share/doc/scala
|
|
|
|
|
2013-11-09 22:44:05 +01:00
|
|
|
for p in $(ls $out/bin/) ; do
|
2017-01-12 18:51:29 +01:00
|
|
|
wrapProgram $out/bin/$p \
|
|
|
|
--prefix PATH ":" ${coreutils}/bin \
|
|
|
|
--prefix PATH ":" ${gnugrep}/bin \
|
|
|
|
--prefix PATH ":" ${jre}/bin \
|
|
|
|
--set JAVA_HOME ${jre}
|
2013-11-09 22:44:05 +01:00
|
|
|
done
|
2008-04-12 00:10:44 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "General purpose programming language";
|
2010-03-30 01:36:25 +02: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 15:49:00 +02:00
|
|
|
Code sizes are typically reduced by a factor of two to three when
|
2010-03-30 01:36:25 +02:00
|
|
|
compared to an equivalent Java application.
|
|
|
|
'';
|
2018-06-27 22:12:57 +02:00
|
|
|
homepage = https://www.scala-lang.org/;
|
2014-11-19 19:54:24 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2013-02-26 17:18:16 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-04-12 00:10:44 +02:00
|
|
|
};
|
|
|
|
}
|