summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2017-12-14 08:29:16 -0500
committerTim Steinbach <tim@nequissimus.com>2017-12-14 08:29:16 -0500
commit3f3e548312fe8153a1aa96c2d77075083b5c5afe (patch)
tree1252586494d641fca1c444b833be3d399ef0a1bb /pkgs/development/compilers
parent2e21451dcf0b39d12eaba74672caf2d344d4cb27 (diff)
downloadnixlib-3f3e548312fe8153a1aa96c2d77075083b5c5afe.tar
nixlib-3f3e548312fe8153a1aa96c2d77075083b5c5afe.tar.gz
nixlib-3f3e548312fe8153a1aa96c2d77075083b5c5afe.tar.bz2
nixlib-3f3e548312fe8153a1aa96c2d77075083b5c5afe.tar.lz
nixlib-3f3e548312fe8153a1aa96c2d77075083b5c5afe.tar.xz
nixlib-3f3e548312fe8153a1aa96c2d77075083b5c5afe.tar.zst
nixlib-3f3e548312fe8153a1aa96c2d77075083b5c5afe.zip
kotlin: 1.1.60-b55 -> 1.2.10
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/kotlin/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 8f2bbefc2bc7..5015f4900774 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,15 +1,14 @@
 { stdenv, fetchurl, makeWrapper, jre, unzip }:
 
 let
-  version = "1.1.60";
-  release = "55";
+  version = "1.2.10";
 in stdenv.mkDerivation rec {
   inherit version;
   name = "kotlin-${version}";
 
   src = fetchurl {
-    url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}-release-${release}.zip";
-    sha256 = "04vlhpc92pg0bcgapd5w2b3039sgv52km8i0m4mc5yf0ik6hx1s9";
+    url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
+    sha256 = "1qr61i5fjd5p7bi05hplagmcxgb05k4xdh5yjjvaq8cij5l4b1wm";
   };
 
   propagatedBuildInputs = [ jre ] ;