about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-09-26 18:03:39 -0700
committerR. RyanTM <ryantm-bot@ryantm.com>2019-09-26 18:03:39 -0700
commit9033e1bdc1e1a2d689cbf446b20ba23571562ec8 (patch)
tree90a13a3e63bbf7e4bf1c347776a7a7c89d0886fd /pkgs/development/compilers
parent96ac71d680fe8d07e51fa979b0818b9aae06e1ec (diff)
downloadnixlib-9033e1bdc1e1a2d689cbf446b20ba23571562ec8.tar
nixlib-9033e1bdc1e1a2d689cbf446b20ba23571562ec8.tar.gz
nixlib-9033e1bdc1e1a2d689cbf446b20ba23571562ec8.tar.bz2
nixlib-9033e1bdc1e1a2d689cbf446b20ba23571562ec8.tar.lz
nixlib-9033e1bdc1e1a2d689cbf446b20ba23571562ec8.tar.xz
nixlib-9033e1bdc1e1a2d689cbf446b20ba23571562ec8.tar.zst
nixlib-9033e1bdc1e1a2d689cbf446b20ba23571562ec8.zip
kotlin: 1.3.41 -> 1.3.50
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')
-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 90dc20fcd3ea..12a75eb8f143 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.41";
+  version = "1.3.50";
 in stdenv.mkDerivation {
   inherit version;
   pname = "kotlin";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
-    sha256 = "0ch1fynqjfsb7jklw3pa6fygrgnl8nz4x4v0id06wq4md23bcjn4";
+    sha256 = "1v66pnk810agf26khwdv7l8jpc11x6na5fyqxs9jvxdpls8l0hk9";
   };
 
   propagatedBuildInputs = [ jre ] ;