summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2019-12-24 21:37:14 -0500
committerGitHub <noreply@github.com>2019-12-24 21:37:14 -0500
commit4ed50bdd93aaa385184e5d05852e4a233348c831 (patch)
tree1f314dc2b06c2b3359abfe91df5132fd9aa5d3e3 /pkgs/development
parentecbcdc8a4c3b22d6f2a934d3661eef2fd2e1c113 (diff)
parentc4877dcd9fa38616a5cb6d97a1dde53a90a4b5e4 (diff)
downloadnixpkgs-4ed50bdd93aaa385184e5d05852e4a233348c831.tar
nixpkgs-4ed50bdd93aaa385184e5d05852e4a233348c831.tar.gz
nixpkgs-4ed50bdd93aaa385184e5d05852e4a233348c831.tar.bz2
nixpkgs-4ed50bdd93aaa385184e5d05852e4a233348c831.tar.lz
nixpkgs-4ed50bdd93aaa385184e5d05852e4a233348c831.tar.xz
nixpkgs-4ed50bdd93aaa385184e5d05852e4a233348c831.tar.zst
nixpkgs-4ed50bdd93aaa385184e5d05852e4a233348c831.zip
Merge pull request #76299 from r-ryantm/auto-update/kotlin
kotlin: 1.3.60 -> 1.3.61
Diffstat (limited to 'pkgs/development')
-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 a6384c449c8..6ad3f96bf59 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.3.60";
+  version = "1.3.61";
 in stdenv.mkDerivation {
   inherit version;
   pname = "kotlin";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
-    sha256 = "1frgnirrl795m8xydngrbn73np5gwgs7wymr9j81d0gz4gzpry8j";
+    sha256 = "073vb402b03llscgr298iih5lc3y1dn1qxyid2i9hiyrsld1a09r";
   };
 
   propagatedBuildInputs = [ jre ] ;