kotlin: 1.1.1 -> 1.1.2

This commit is contained in:
Tim Steinbach 2017-04-27 08:30:30 -04:00
parent 85add87068
commit cd2b044847
No known key found for this signature in database
GPG Key ID: 472BFCCA96BD0EDA

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
stdenv.mkDerivation rec {
version = "1.1.1";
version = "1.1.2";
name = "kotlin-${version}";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
sha256 = "1c96l1bkll0l8c82cfzmph0z38f96r3x68zmggq4s8hhdqgwk8mc";
sha256 = "0kngyv5qjjpd93i1b8gn1vw6r8p52lfjrqa2f13nf06v9aqk0vfb";
};
propagatedBuildInputs = [ jre ] ;