summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2018-03-26 08:37:57 -0400
committerGitHub <noreply@github.com>2018-03-26 08:37:57 -0400
commit6889af56c9ee2a2330964e03712f75aa1bc41c76 (patch)
tree8387ed25c3397c490c9976a905271acfdb0ad499
parent81e7c18e4ec1198b23baf8ea8b8efd0c5b42a72e (diff)
parentaeefaae044e09da97e1bc0e62f9e7ba4016c7dd0 (diff)
downloadnixlib-6889af56c9ee2a2330964e03712f75aa1bc41c76.tar
nixlib-6889af56c9ee2a2330964e03712f75aa1bc41c76.tar.gz
nixlib-6889af56c9ee2a2330964e03712f75aa1bc41c76.tar.bz2
nixlib-6889af56c9ee2a2330964e03712f75aa1bc41c76.tar.lz
nixlib-6889af56c9ee2a2330964e03712f75aa1bc41c76.tar.xz
nixlib-6889af56c9ee2a2330964e03712f75aa1bc41c76.tar.zst
nixlib-6889af56c9ee2a2330964e03712f75aa1bc41c76.zip
Merge pull request #37812 from ryantm/auto-update/kotlin
kotlin: 1.2.30 -> 1.2.31
-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 b6374908757c..62c1c2c96708 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, makeWrapper, jre, unzip }:
 
 let
-  version = "1.2.30";
+  version = "1.2.31";
 in stdenv.mkDerivation rec {
   inherit version;
   name = "kotlin-${version}";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
-    sha256 = "0wg08cncwfajxfx8860wdf5dr4h92j069qvdr90l5m01ff3nasad";
+    sha256 = "09l0vjff9kkiprf5irgq1sb9cils8plbzbrf55ajj8m5fyxcd6fs";
   };
 
   propagatedBuildInputs = [ jre ] ;