2021-01-22 12:25:31 +01:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre, unzip }:
|
2015-12-05 00:33:06 +01:00
|
|
|
|
2021-04-14 12:58:59 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "kotlin";
|
2022-07-08 23:28:45 +02:00
|
|
|
version = "1.7.10";
|
2015-12-05 00:33:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-12-14 14:29:16 +01:00
|
|
|
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
|
2022-07-08 23:28:45 +02:00
|
|
|
hash = "sha256-doP1RR7zCOt3Omhu53eadqle2LFDxprCR5N2GdfKOgk=";
|
2015-12-05 00:33:06 +01:00
|
|
|
};
|
|
|
|
|
2016-02-04 17:31:12 +01:00
|
|
|
propagatedBuildInputs = [ jre ] ;
|
2021-02-20 22:01:53 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper unzip ];
|
2015-12-05 00:33:06 +01: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
|
2018-05-04 22:10:30 +02:00
|
|
|
|
|
|
|
if [ -f $out/LICENSE ]; then
|
|
|
|
install -D $out/LICENSE $out/share/kotlin/LICENSE
|
|
|
|
rm $out/LICENSE
|
|
|
|
fi
|
2015-12-05 00:33:06 +01: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.
|
2015-12-22 19:59:28 +01:00
|
|
|
It is developed by a team at JetBrains although it is an OSS language
|
2015-12-05 00:33:06 +01:00
|
|
|
and has external contributors.
|
|
|
|
'';
|
2020-03-04 07:12:11 +01:00
|
|
|
homepage = "https://kotlinlang.org/";
|
2021-01-22 12:25:31 +01:00
|
|
|
license = lib.licenses.asl20;
|
2021-06-18 10:42:59 +02:00
|
|
|
maintainers = with lib.maintainers; [ SubhrajyotiSen ];
|
2021-01-22 12:25:31 +01:00
|
|
|
platforms = lib.platforms.all;
|
2015-12-05 00:33:06 +01:00
|
|
|
};
|
|
|
|
}
|