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

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre, unzip }:
2015-12-04 23:33:06 +00:00
2017-11-13 19:12:17 +00:00
let
2020-12-09 07:57:47 +00:00
version = "1.4.21";
2019-08-13 21:52:01 +00:00
in stdenv.mkDerivation {
2017-11-13 19:12:17 +00:00
inherit version;
pname = "kotlin";
2015-12-04 23:33:06 +00:00
src = fetchurl {
2017-12-14 13:29:16 +00:00
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
2020-12-09 07:57:47 +00:00
sha256 = "1ixnwrvgs14f9160d9d69r7w2dfp5cdwiwpk1ky0ps8nly8hjwj6";
2015-12-04 23:33:06 +00:00
};
propagatedBuildInputs = [ jre ] ;
nativeBuildInputs = [ 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
if [ -f $out/LICENSE ]; then
install -D $out/LICENSE $out/share/kotlin/LICENSE
rm $out/LICENSE
fi
2015-12-04 23:33:06 +00:00
'';
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.
'';
2020-03-04 06:12:11 +00:00
homepage = "https://kotlinlang.org/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers;
2020-10-08 14:20:38 +00:00
[ ];
platforms = lib.platforms.all;
2015-12-04 23:33:06 +00:00
};
}