2013-11-09 22:44:05 +01:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre }:
|
2010-03-30 01:36:25 +02:00
|
|
|
|
2008-04-12 00:10:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-22 15:57:54 +02:00
|
|
|
name = "scala-2.11.2";
|
2008-04-12 00:10:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-11-09 22:44:05 +01:00
|
|
|
url = "http://www.scala-lang.org/files/archive/${name}.tgz";
|
2014-10-22 15:57:54 +02:00
|
|
|
sha256 = "0mnjhjiixjphr9v101v408815hkl6hlghx9h7lmmylv5z7gk3p8k";
|
2008-04-12 00:10:44 +02:00
|
|
|
};
|
|
|
|
|
2013-11-09 22:44:05 +01:00
|
|
|
buildInputs = [ jre makeWrapper ] ;
|
|
|
|
|
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
|
|
|
|
|
|
|
for p in $(ls $out/bin/) ; do
|
|
|
|
wrapProgram $out/bin/$p --prefix PATH ":" ${jre}/bin ;
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = http://www.scala-lang.org/;
|
|
|
|
license = "BSD";
|
2013-02-26 17:18:16 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-04-12 00:10:44 +02:00
|
|
|
};
|
|
|
|
}
|