nixpkgs/pkgs/development/compilers/kotlin/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2016-03-16 23:20:10 +00:00
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
2015-12-04 23:33:06 +00:00
stdenv.mkDerivation rec {
2016-11-09 23:53:52 +00:00
version = "1.0.5";
2015-12-04 23:33:06 +00:00
name = "kotlin-${version}";
src = fetchurl {
2016-07-11 23:14:30 +00:00
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
2016-11-09 23:53:52 +00:00
sha512 = "0bkgxr4an1fq890s3bw4izwc8ly29xk28gdibvnp2q9qd15rwrny5dgns697rnbw2gg0nn08q5p33asvbkac001cfabfphamjwndvc9";
2015-12-04 23:33:06 +00:00
};
propagatedBuildInputs = [ jre ] ;
2016-03-16 23:20:10 +00:00
buildInputs = [ makeWrapper unzip ] ;
2015-12-04 23:33:06 +00:00
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
2015-12-04 23:33:06 +00:00
and has external contributors.
'';
homepage = http://kotlinlang.org/;
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers;
[ nequissimus ];
platforms = stdenv.lib.platforms.all;
};
}