kotlin: 1.1.60-b55 -> 1.2.10

+3 -4
+3 -4
pkgs/development/compilers/kotlin/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper, jre, unzip }: 2 2 3 3 let 4 - version = "1.1.60"; 5 - release = "55"; 4 + version = "1.2.10"; 6 5 in stdenv.mkDerivation rec { 7 6 inherit version; 8 7 name = "kotlin-${version}"; 9 8 10 9 src = fetchurl { 11 - url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}-release-${release}.zip"; 12 - sha256 = "04vlhpc92pg0bcgapd5w2b3039sgv52km8i0m4mc5yf0ik6hx1s9"; 10 + url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip"; 11 + sha256 = "1qr61i5fjd5p7bi05hplagmcxgb05k4xdh5yjjvaq8cij5l4b1wm"; 13 12 }; 14 13 15 14 propagatedBuildInputs = [ jre ] ;