2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2008-04-12 00:10:44 +02:00
|
|
|
|
2010-03-30 01:36:25 +02:00
|
|
|
# at runtime, need jre or jdk
|
|
|
|
|
2008-04-12 00:10:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2011-04-15 11:11:49 +02:00
|
|
|
name = "scala-2.8.1";
|
2008-04-12 00:10:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-03-30 01:36:25 +02:00
|
|
|
url = "http://www.scala-lang.org/downloads/distrib/files/${name}.final.tgz";
|
2011-04-15 11:11:49 +02:00
|
|
|
sha256 = "0lf76fclvd5l2as3gvzx9jc1b9narx4j046111bmbkcwqw7iw8bl";
|
2008-04-12 00:10:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2010-03-30 01:36:25 +02:00
|
|
|
ensureDir $out
|
|
|
|
rm bin/*.bat
|
2008-04-12 00:10:44 +02:00
|
|
|
mv * $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
phases = "unpackPhase installPhase";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Scala is a 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.
|
|
|
|
Code sizes are typically reduced by a factor of two to three when
|
|
|
|
compared to an equivalent Java application.
|
|
|
|
'';
|
|
|
|
homepage = http://www.scala-lang.org/;
|
|
|
|
license = "BSD";
|
2008-04-12 00:10:44 +02:00
|
|
|
};
|
|
|
|
}
|