Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #13009 from NeQuissimus/kotlin10

kotlin: 1.0.0-rc-1036 -> 1.0.0

+4 -4
+4 -4
pkgs/development/compilers/kotlin/default.nix
··· 1 - { stdenv, fetchurl, makeWrapper, jre, unzip }: 2 3 stdenv.mkDerivation rec { 4 - version = "1.0.0-rc-1036"; 5 name = "kotlin-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; 9 - sha256 = "8d72ff925678a2172fbbefcb6f0c5a195a300dccf240e5add16c3e8d86e13d67"; 10 }; 11 12 propagatedBuildInputs = [ jre ] ; 13 - buildInputs = [ makeWrapper unzip ] ; 14 15 installPhase = '' 16 mkdir -p $out
··· 1 + { stdenv, fetchurl, makeWrapper, jre, unzip, which }: 2 3 stdenv.mkDerivation rec { 4 + version = "1.0.0"; 5 name = "kotlin-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; 9 + sha256 = "0dp5mab35sv3nsgj488ibyn6x6xw2rka76s7kygbhqhjc429kpgy"; 10 }; 11 12 propagatedBuildInputs = [ jre ] ; 13 + buildInputs = [ makeWrapper unzip which ] ; 14 15 installPhase = '' 16 mkdir -p $out