42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
 | 
						|
 | 
						|
let
 | 
						|
  version = "1.2.10";
 | 
						|
in stdenv.mkDerivation rec {
 | 
						|
  inherit version;
 | 
						|
  name = "kotlin-${version}";
 | 
						|
 | 
						|
  src = fetchurl {
 | 
						|
    url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
 | 
						|
    sha256 = "1qr61i5fjd5p7bi05hplagmcxgb05k4xdh5yjjvaq8cij5l4b1wm";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ jre ] ;
 | 
						|
  buildInputs = [ makeWrapper unzip ] ;
 | 
						|
 | 
						|
  installPhase = ''
 | 
						|
    mkdir -p $out
 | 
						|
    rm "bin/"*.bat
 | 
						|
    mv * $out
 | 
						|
 | 
						|
    for p in $(ls $out/bin/) ; do
 | 
						|
      wrapProgram $out/bin/$p --prefix PATH ":" ${jre}/bin ;
 | 
						|
    done
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "General purpose programming language";
 | 
						|
    longDescription = ''
 | 
						|
      Kotlin is a statically typed language that targets the JVM and JavaScript.
 | 
						|
      It is a general-purpose language intended for industry use.
 | 
						|
      It is developed by a team at JetBrains although it is an OSS language
 | 
						|
      and has external contributors.
 | 
						|
    '';
 | 
						|
    homepage = http://kotlinlang.org/;
 | 
						|
    license = stdenv.lib.licenses.asl20;
 | 
						|
    maintainers = with stdenv.lib.maintainers;
 | 
						|
      [ nequissimus ];
 | 
						|
    platforms = stdenv.lib.platforms.all;
 | 
						|
  };
 | 
						|
}
 |