summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-04-30 15:37:14 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-04-30 15:37:14 -0700
commitbf49200102a19a34bc619bfa7643cf9037dea4e2 (patch)
tree46d43504dcb47ec8a22c00fcd02e5ebbc42e140d /pkgs/development
parent7e33e374db487ed87db316db3b2687f917aa7f90 (diff)
downloadnixlib-bf49200102a19a34bc619bfa7643cf9037dea4e2.tar
nixlib-bf49200102a19a34bc619bfa7643cf9037dea4e2.tar.gz
nixlib-bf49200102a19a34bc619bfa7643cf9037dea4e2.tar.bz2
nixlib-bf49200102a19a34bc619bfa7643cf9037dea4e2.tar.lz
nixlib-bf49200102a19a34bc619bfa7643cf9037dea4e2.tar.xz
nixlib-bf49200102a19a34bc619bfa7643cf9037dea4e2.tar.zst
nixlib-bf49200102a19a34bc619bfa7643cf9037dea4e2.zip
kotlin: 1.2.40 -> 1.2.41
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.

These checks were done:

- built on NixOS
- ran ‘/nix/store/5byxycv5j3gvwvr87qpv08a7347fxv9q-kotlin-1.2.41/bin/kotlin -h’ got 0 exit code
- ran ‘/nix/store/5byxycv5j3gvwvr87qpv08a7347fxv9q-kotlin-1.2.41/bin/.kotlin-wrapped -h’ got 0 exit code
- found 1.2.41 with grep in /nix/store/5byxycv5j3gvwvr87qpv08a7347fxv9q-kotlin-1.2.41
- directory tree listing: https://gist.github.com/927e0c1e045ca7c165603ae8b1961beb
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 d5ce240b4a5f..e589611505f4 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.40";
+  version = "1.2.41";
 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 = "0n4na0ddnjgc573szk5bpd34v5gib71pah62xq7vwdf34q8mg61l";
+    sha256 = "0p16xl2qhm7913abd06vvmsx956ny51jjfr6knkmrnk8y9r2g1xg";
   };
 
   propagatedBuildInputs = [ jre ] ;