kotlin: 1.1.60-b55 -> 1.2.10

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