Merge pull request #37812 from ryantm/auto-update/kotlin

kotlin: 1.2.30 -> 1.2.31
This commit is contained in:
Tim Steinbach 2018-03-26 08:37:57 -04:00 committed by GitHub
commit 6889af56c9
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.30";
version = "1.2.31";
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 = "0wg08cncwfajxfx8860wdf5dr4h92j069qvdr90l5m01ff3nasad";
sha256 = "09l0vjff9kkiprf5irgq1sb9cils8plbzbrf55ajj8m5fyxcd6fs";
};
propagatedBuildInputs = [ jre ] ;