kotlin: 1.2.21 -> 1.2.30

This commit is contained in:
Tim Steinbach 2018-03-04 10:18:05 -05:00
parent 4eb7945515
commit d070199a24
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.21";
version = "1.2.30";
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 = "08mg0xl6n5kl71rn4ix6innqa7dlirmw1rlj9qwmqv5abp9wpwn5";
sha256 = "0wg08cncwfajxfx8860wdf5dr4h92j069qvdr90l5m01ff3nasad";
};
propagatedBuildInputs = [ jre ] ;