lol

kotlin: 1.0.0-beta-3595 -> 1.0.0-beta-4583, fixes #11883

authored by

Tim Steinbach and committed by
Rok Garbas
eb8e309d 971d580a

+3 -3
+3 -3
pkgs/development/compilers/kotlin/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper, jre, unzip, which }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.0.0-beta-3595"; 4 + version = "1.0.0-beta-4583"; 5 5 name = "kotlin-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; 9 - sha256 = "1ed750a169a411349852a102d5a9c23aec656acb76d51018a4933741eb846fae"; 9 + sha256 = "4db71d3c1f150618568ebd1f8c17567ff15afe022c2f0121368c17afad9e8188"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ jre which ] ; ··· 27 27 longDescription = '' 28 28 Kotlin is a statically typed language that targets the JVM and JavaScript. 29 29 It is a general-purpose language intended for industry use. 30 - It is developed by a team at JetBrains although it is an OSS language 30 + It is developed by a team at JetBrains although it is an OSS language 31 31 and has external contributors. 32 32 ''; 33 33 homepage = http://kotlinlang.org/;