2013-11-09 21:44:05 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre }:
|
2010-03-29 23:36:25 +00:00
|
|
|
|
2008-04-11 22:10:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-31 13:35:03 +00:00
|
|
|
name = "scala-2.11.4";
|
2008-04-11 22:10:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-11-09 21:44:05 +00:00
|
|
|
url = "http://www.scala-lang.org/files/archive/${name}.tgz";
|
2014-11-01 20:07:09 +00:00
|
|
|
sha256 = "1140xyp8kbv4l6l95pqj2bawzlvs7h39ivikdv09n13qvqcml3q0";
|
2008-04-11 22:10:44 +00:00
|
|
|
};
|
|
|
|
|
2013-11-09 21:44:05 +00:00
|
|
|
buildInputs = [ jre makeWrapper ] ;
|
|
|
|
|
2008-04-11 22:10:44 +00:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out
|
2014-06-15 10:16:36 +00:00
|
|
|
rm "bin/"*.bat
|
2008-04-11 22:10:44 +00:00
|
|
|
mv * $out
|
2013-11-09 21:44:05 +00:00
|
|
|
|
|
|
|
for p in $(ls $out/bin/) ; do
|
|
|
|
wrapProgram $out/bin/$p --prefix PATH ":" ${jre}/bin ;
|
|
|
|
done
|
2008-04-11 22:10:44 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "General purpose programming language";
|
2010-03-29 23:36:25 +00: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 13:49:00 +00:00
|
|
|
Code sizes are typically reduced by a factor of two to three when
|
2010-03-29 23:36:25 +00:00
|
|
|
compared to an equivalent Java application.
|
|
|
|
'';
|
|
|
|
homepage = http://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 22:10:44 +00:00
|
|
|
};
|
|
|
|
}
|