kotlin: 1.2.10 -> 1.2.20

This commit is contained in:
Tim Steinbach 2018-01-17 10:25:25 -05:00
parent 241e509abd
commit c5b5568a12
No known key found for this signature in database
GPG Key ID: 472BFCCA96BD0EDA

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
let
version = "1.2.10";
version = "1.2.20";
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 = "1qr61i5fjd5p7bi05hplagmcxgb05k4xdh5yjjvaq8cij5l4b1wm";
sha256 = "0mx047j98jaw0smpk150ipfbb922il2kqqp3fmsz6hvvygcx6qzv";
};
propagatedBuildInputs = [ jre ] ;