about summary refs log tree commit diff
path: root/pkgs/development/compilers/kotlin
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-09-20 12:01:26 -0700
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2018-09-21 08:05:29 -0400
commit4eb077bed72e3ad0fe5ba5150931d45fa1296429 (patch)
treed57ce5b9bb7be6bc8fcc4b38b70953ad8dd55a8a /pkgs/development/compilers/kotlin
parent99004c011cc8e38e48965da61bb7733696078720 (diff)
downloadnixlib-4eb077bed72e3ad0fe5ba5150931d45fa1296429.tar
nixlib-4eb077bed72e3ad0fe5ba5150931d45fa1296429.tar.gz
nixlib-4eb077bed72e3ad0fe5ba5150931d45fa1296429.tar.bz2
nixlib-4eb077bed72e3ad0fe5ba5150931d45fa1296429.tar.lz
nixlib-4eb077bed72e3ad0fe5ba5150931d45fa1296429.tar.xz
nixlib-4eb077bed72e3ad0fe5ba5150931d45fa1296429.tar.zst
nixlib-4eb077bed72e3ad0fe5ba5150931d45fa1296429.zip
kotlin: 1.2.61 -> 1.2.70
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/kotlin/versions
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 757773eed52d..718628d8ad41 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.61";
+  version = "1.2.70";
 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 = "1gsvilsbgwdvyvxjnlvs0rhrgm6x9dapziwgwgg9kbi9a0w4avdy";
+    sha256 = "0d44rzngpfhgh1qc99b97dczdyrmypbwzrmr00qmcy2ya2il0fm2";
   };
 
   propagatedBuildInputs = [ jre ] ;