summary refs log tree commit diff
path: root/pkgs/development/compilers/kotlin
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2017-09-26 08:52:44 -0400
committerTim Steinbach <tim@nequissimus.com>2017-09-26 08:52:44 -0400
commitbec98b765d90e209bff7cba7793fdc28df5c455b (patch)
treef8df9cd251453fbbceafdb65a0637d3d60abe0ee /pkgs/development/compilers/kotlin
parent5a2a35aef3fbb9f392ee8ac7e3d7727af86f0ceb (diff)
downloadnixlib-bec98b765d90e209bff7cba7793fdc28df5c455b.tar
nixlib-bec98b765d90e209bff7cba7793fdc28df5c455b.tar.gz
nixlib-bec98b765d90e209bff7cba7793fdc28df5c455b.tar.bz2
nixlib-bec98b765d90e209bff7cba7793fdc28df5c455b.tar.lz
nixlib-bec98b765d90e209bff7cba7793fdc28df5c455b.tar.xz
nixlib-bec98b765d90e209bff7cba7793fdc28df5c455b.tar.zst
nixlib-bec98b765d90e209bff7cba7793fdc28df5c455b.zip
kotlin: 1.1.4-2 -> 1.1.50
Diffstat (limited to 'pkgs/development/compilers/kotlin')
-rw-r--r--pkgs/development/compilers/kotlin/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 65c2125dfbca..bc24cdfb87e9 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, makeWrapper, jre, unzip }:
 
 stdenv.mkDerivation rec {
-  version = "1.1.4-2";
+  version = "1.1.50";
   name = "kotlin-${version}";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
-    sha256 = "09sikwk5xxn4b30icbq28mjs4lm9xbj0bv5yjx75r165iz65g2cv";
+    sha256 = "01y7m0r5wa2apd05c38h77060javgbj8072vd08lz4qaw6c6445m";
   };
 
   propagatedBuildInputs = [ jre ] ;