From 85c051b2f3d34377e8c574925d563fc2a356ce26 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 8 Dec 2015 02:34:09 +0000 Subject: [PATCH] kotlin: 1.0.0-beta-3594 -> 1.0.0-beta-3595 --- pkgs/development/compilers/kotlin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index 8c21fb9e263..e97309f9252 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre, unzip, which }: stdenv.mkDerivation rec { - version = "1.0.0-beta-3594"; + version = "1.0.0-beta-3595"; name = "kotlin-${version}"; src = fetchurl { url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "a633dc27bc9bc87174835ea47d5be8ec73e0a673bb46c4b9a5a784db95f3c733"; + sha256 = "1ed750a169a411349852a102d5a9c23aec656acb76d51018a4933741eb846fae"; }; propagatedBuildInputs = [ jre which ] ;