summary refs log tree commit diff
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2015-12-06 00:30:19 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2015-12-06 00:30:19 +0300
commit1764a0571077833fa976402af4988dcee10e6a54 (patch)
tree2ae8e7241a3bb3db190e3b11bec1d584553fd702
parent59823208a6a4373d20e6d5ba7abbf4228c9638a6 (diff)
parenta356c3fa47b31e570408dd7395bc5c0a3f464abd (diff)
downloadnixpkgs-1764a0571077833fa976402af4988dcee10e6a54.tar
nixpkgs-1764a0571077833fa976402af4988dcee10e6a54.tar.gz
nixpkgs-1764a0571077833fa976402af4988dcee10e6a54.tar.bz2
nixpkgs-1764a0571077833fa976402af4988dcee10e6a54.tar.lz
nixpkgs-1764a0571077833fa976402af4988dcee10e6a54.tar.xz
nixpkgs-1764a0571077833fa976402af4988dcee10e6a54.tar.zst
nixpkgs-1764a0571077833fa976402af4988dcee10e6a54.zip
Merge pull request #11473 from NeQuissimus/master
Add Kotlin
-rw-r--r--lib/maintainers.nix1
-rw-r--r--pkgs/development/compilers/kotlin/default.nix39
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 42 insertions, 0 deletions
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index cf142c26d5e..282c7112b2f 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -207,6 +207,7 @@
   muflax = "Stefan Dorn <mail@muflax.com>";
   nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
   nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
+  nequissimus = "Tim Steinbach <tim@nequissimus.com>";
   nico202 = "Nicolò Balzarotti <anothersms@gmail.com>";
   notthemessiah = "Brian Cohen <brian.cohen.88@gmail.com>";
   np = "Nicolas Pouillard <np.nix@nicolaspouillard.fr>";
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
new file mode 100644
index 00000000000..8c21fb9e263
--- /dev/null
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, makeWrapper, jre, unzip, which }:
+
+stdenv.mkDerivation rec {
+  version = "1.0.0-beta-3594";
+  name = "kotlin-${version}";
+
+  src = fetchurl {
+    url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip";
+    sha256 = "a633dc27bc9bc87174835ea47d5be8ec73e0a673bb46c4b9a5a784db95f3c733";
+  };
+
+  propagatedBuildInputs = [ jre which ] ;
+  buildInputs = [ 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
+  '';
+
+  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 = http://kotlinlang.org/;
+    license = stdenv.lib.licenses.asl20;
+    maintainers = with stdenv.lib.maintainers;
+      [ nequissimus ];
+    platforms = stdenv.lib.platforms.all;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1e0a94fbd60..81e7006419d 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4228,6 +4228,8 @@ let
     openblas = openblasCompat;
   };
 
+  kotlin = callPackage ../development/compilers/kotlin { };
+
   lazarus = callPackage ../development/compilers/fpc/lazarus.nix {
     fpc = fpc;
   };