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

kotlin: 1.3.71 -> 1.3.72
This commit is contained in:
Tim Steinbach 2020-05-03 18:23:48 -04:00 committed by GitHub
commit 341889af01
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.3.71";
version = "1.3.72";
in stdenv.mkDerivation {
inherit version;
pname = "kotlin";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
sha256 = "0jp7z2lys02d0wmycdlfg9c08ji4qvjaz2wzvrxjyvcwv7d7gnvs";
sha256 = "0v6c4vjiflwbjjc1lmiyzrilxwbqcz5ll6ls40zhw70zk23xpl6c";
};
propagatedBuildInputs = [ jre ] ;