kotlin: 1.2.50 -> 1.2.51

This commit is contained in:
Tim Steinbach 2018-07-03 09:01:04 -04:00
parent 64219950fc
commit 760d5f6058
No known key found for this signature in database
GPG Key ID: 472BFCCA96BD0EDA

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }: { stdenv, fetchurl, makeWrapper, jre, unzip }:
let let
version = "1.2.50"; version = "1.2.51";
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
inherit version; inherit version;
name = "kotlin-${version}"; name = "kotlin-${version}";
src = fetchurl { src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip"; url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
sha256 = "1abis73ij334vfwn9k4s9rsa1va7h31a9g97g84i2rrp7cq2q1mw"; sha256 = "0b7rlv4w3bqfxwp0sici8lraskavmx08qgf1jddjcgaxh0f72x4a";
}; };
propagatedBuildInputs = [ jre ] ; propagatedBuildInputs = [ jre ] ;