44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, fetchurl, makeWrapper, jre, gnugrep, coreutils }:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  name = "scala-2.10.6";
 | 
						|
 | 
						|
  src = fetchurl {
 | 
						|
    url = "http://www.scala-lang.org/files/archive/${name}.tgz";
 | 
						|
    sha256 = "0rrdrndnxy8m76gppqh7yr68qfx0kxns5bwc69k4swz6va1zbbal";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ jre ] ;
 | 
						|
  buildInputs = [ makeWrapper ] ;
 | 
						|
 | 
						|
  installPhase = ''
 | 
						|
    mkdir -p $out
 | 
						|
    rm bin/*.bat
 | 
						|
    mv * $out
 | 
						|
 | 
						|
    for p in $(ls $out/bin/) ; do
 | 
						|
      wrapProgram $out/bin/$p \
 | 
						|
        --prefix PATH ":" ${coreutils}/bin \
 | 
						|
        --prefix PATH ":" ${gnugrep}/bin \
 | 
						|
        --prefix PATH ":" ${jre}/bin \
 | 
						|
        --set JAVA_HOME ${jre}
 | 
						|
    done
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "A general purpose programming language";
 | 
						|
    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 = stdenv.lib.licenses.bsd3;
 | 
						|
    platforms = stdenv.lib.platforms.all;
 | 
						|
    branch = "2.10";
 | 
						|
  };
 | 
						|
}
 |