Merge pull request #42497 from r-ryantm/auto-update/kotlin

kotlin: 1.2.41 -> 1.2.50
This commit is contained in:
Tim Steinbach 2018-06-24 23:04:24 +00:00 committed by GitHub
commit 93005c288d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,14 +1,14 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
let
version = "1.2.41";
version = "1.2.50";
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 = "0p16xl2qhm7913abd06vvmsx956ny51jjfr6knkmrnk8y9r2g1xg";
sha256 = "1abis73ij334vfwn9k4s9rsa1va7h31a9g97g84i2rrp7cq2q1mw";
};
propagatedBuildInputs = [ jre ] ;