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

kotlin: 1.2.31 -> 1.2.40
This commit is contained in:
Tim Steinbach 2018-04-20 18:07:33 -04:00 committed by GitHub
commit d9e6d74848
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.31";
version = "1.2.40";
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 = "09l0vjff9kkiprf5irgq1sb9cils8plbzbrf55ajj8m5fyxcd6fs";
sha256 = "0n4na0ddnjgc573szk5bpd34v5gib71pah62xq7vwdf34q8mg61l";
};
propagatedBuildInputs = [ jre ] ;