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

kotlin: 1.2.40 -> 1.2.41
This commit is contained in:
Matthew Justin Bauer 2018-05-05 16:10:25 -05:00 committed by GitHub
commit 639dd1910d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 ] ;