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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre, unzip }:
2015-12-05 02:33:06 +03:00
2021-04-14 13:58:59 +03:00
stdenv.mkDerivation rec {
pname = "kotlin";
2022-07-09 00:28:45 +03:00
version = "1.7.10";
2015-12-05 02:33:06 +03:00
src = fetchurl {
2017-12-14 16:29:16 +03:00
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
2022-07-09 00:28:45 +03:00
hash = "sha256-doP1RR7zCOt3Omhu53eadqle2LFDxprCR5N2GdfKOgk=";
2015-12-05 02:33:06 +03:00
};
propagatedBuildInputs = [ jre ] ;
nativeBuildInputs = [ makeWrapper unzip ];
2015-12-05 02:33:06 +03: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-05 02:33:06 +03: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-05 02:33:06 +03:00
and has external contributors.
'';
2020-03-04 09:12:11 +03:00
homepage = "https://kotlinlang.org/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ SubhrajyotiSen ];
platforms = lib.platforms.all;
2015-12-05 02:33:06 +03:00
};
}