summary refs log tree commit diff
path: root/pkgs/development/compilers/kotlin
diff options
context:
space:
mode:
authorTim Steinbach <steinbach.tim@googlemail.com>2015-12-08 02:34:09 +0000
committerTim Steinbach <steinbach.tim@googlemail.com>2015-12-08 02:34:09 +0000
commit85c051b2f3d34377e8c574925d563fc2a356ce26 (patch)
treed0fa95aa8e0850421995971ef47c8baba85bd8cb /pkgs/development/compilers/kotlin
parentdfb31c3262042fe29ca0ca38f9c1a7e333514322 (diff)
downloadnixpkgs-85c051b2f3d34377e8c574925d563fc2a356ce26.tar
nixpkgs-85c051b2f3d34377e8c574925d563fc2a356ce26.tar.gz
nixpkgs-85c051b2f3d34377e8c574925d563fc2a356ce26.tar.bz2
nixpkgs-85c051b2f3d34377e8c574925d563fc2a356ce26.tar.lz
nixpkgs-85c051b2f3d34377e8c574925d563fc2a356ce26.tar.xz
nixpkgs-85c051b2f3d34377e8c574925d563fc2a356ce26.tar.zst
nixpkgs-85c051b2f3d34377e8c574925d563fc2a356ce26.zip
kotlin: 1.0.0-beta-3594 -> 1.0.0-beta-3595
Diffstat (limited to 'pkgs/development/compilers/kotlin')
-rw-r--r--pkgs/development/compilers/kotlin/default.nix4
1 files 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 ] ;