summary refs log tree commit diff
path: root/pkgs/development/compilers/kotlin
diff options
context:
space:
mode:
authorTim Steinbach <tsteinbach@trustwave.com>2015-12-22 13:59:28 -0500
committerRok Garbas <rok@garbas.si>2015-12-23 01:50:06 +0100
commiteb8e309d2b4523b9dc1777385ae6087a37d8562c (patch)
tree6296509401b03b25156ca1d293ca158a31cc2c9f /pkgs/development/compilers/kotlin
parent971d580a008252337ba6ddcb20a5d1443af09029 (diff)
downloadnixlib-eb8e309d2b4523b9dc1777385ae6087a37d8562c.tar
nixlib-eb8e309d2b4523b9dc1777385ae6087a37d8562c.tar.gz
nixlib-eb8e309d2b4523b9dc1777385ae6087a37d8562c.tar.bz2
nixlib-eb8e309d2b4523b9dc1777385ae6087a37d8562c.tar.lz
nixlib-eb8e309d2b4523b9dc1777385ae6087a37d8562c.tar.xz
nixlib-eb8e309d2b4523b9dc1777385ae6087a37d8562c.tar.zst
nixlib-eb8e309d2b4523b9dc1777385ae6087a37d8562c.zip
kotlin: 1.0.0-beta-3595 -> 1.0.0-beta-4583, fixes #11883
Diffstat (limited to 'pkgs/development/compilers/kotlin')
-rw-r--r--pkgs/development/compilers/kotlin/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index e97309f9252c..9b7c97c8c252 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, makeWrapper, jre, unzip, which }:
 
 stdenv.mkDerivation rec {
-  version = "1.0.0-beta-3595";
+  version = "1.0.0-beta-4583";
   name = "kotlin-${version}";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip";
-    sha256 = "1ed750a169a411349852a102d5a9c23aec656acb76d51018a4933741eb846fae";
+    sha256 = "4db71d3c1f150618568ebd1f8c17567ff15afe022c2f0121368c17afad9e8188";
   };
 
   propagatedBuildInputs = [ jre which ] ;
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
     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 
+      It is developed by a team at JetBrains although it is an OSS language
       and has external contributors.
     '';
     homepage = http://kotlinlang.org/;