mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
ff621f0cab
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kotlin";
|
|
version = "1.5.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
|
|
sha256 = "0kiwddq5b0dk63nlifb8bbaimh8inxsbk97nbw2m8qw17gby339g";
|
|
};
|
|
|
|
propagatedBuildInputs = [ jre ] ;
|
|
nativeBuildInputs = [ 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
|
|
|
|
if [ -f $out/LICENSE ]; then
|
|
install -D $out/LICENSE $out/share/kotlin/LICENSE
|
|
rm $out/LICENSE
|
|
fi
|
|
'';
|
|
|
|
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 = "https://kotlinlang.org/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ SubhrajyotiSen ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|