From 9a9659e9084387d1c69e564fde5e220919e2ece8 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 16 Mar 2016 23:20:10 +0000 Subject: [PATCH] kotlin: 1.0.0 -> 1.0.1 --- pkgs/development/compilers/kotlin/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index 2433f5ab5797..5b9d57cfcac5 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchurl, makeWrapper, jre, unzip, which }: +{ stdenv, fetchurl, makeWrapper, jre, unzip }: stdenv.mkDerivation rec { - version = "1.0.0"; + version = "1.0.1"; name = "kotlin-${version}"; src = fetchurl { - url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "0dp5mab35sv3nsgj488ibyn6x6xw2rka76s7kygbhqhjc429kpgy"; + url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip"; + sha256 = "1hwdisjgy4q5y25gqnxk8ycd04j7hxb7xd0y6ixi12qfj7259a41"; }; propagatedBuildInputs = [ jre ] ; - buildInputs = [ makeWrapper unzip which ] ; + buildInputs = [ makeWrapper unzip ] ; installPhase = '' mkdir -p $out