about summary refs log tree commit diff
path: root/pkgs/development/compilers/kotlin
diff options
context:
space:
mode:
authorTim Steinbach <tsteinbach@trustwave.com>2016-02-04 11:31:12 -0500
committerTim Steinbach <tsteinbach@trustwave.com>2016-02-04 11:31:12 -0500
commit7cc2756f31481a81343eaa62ac39fb30eed67d38 (patch)
treeac9a390146c2c751550de249977af2f4afe43b42 /pkgs/development/compilers/kotlin
parent27016659046a8f8e7b4fd61ecbceaf9f5e306258 (diff)
downloadnixlib-7cc2756f31481a81343eaa62ac39fb30eed67d38.tar
nixlib-7cc2756f31481a81343eaa62ac39fb30eed67d38.tar.gz
nixlib-7cc2756f31481a81343eaa62ac39fb30eed67d38.tar.bz2
nixlib-7cc2756f31481a81343eaa62ac39fb30eed67d38.tar.lz
nixlib-7cc2756f31481a81343eaa62ac39fb30eed67d38.tar.xz
nixlib-7cc2756f31481a81343eaa62ac39fb30eed67d38.tar.zst
nixlib-7cc2756f31481a81343eaa62ac39fb30eed67d38.zip
kotlin: 1.0.0-beta-4584 -> 1.0.0-rc-1036
Diffstat (limited to 'pkgs/development/compilers/kotlin')
-rw-r--r--pkgs/development/compilers/kotlin/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index b17be1c534b0..a6f5dcc21592 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, fetchurl, makeWrapper, jre, unzip, which }:
+{ stdenv, fetchurl, makeWrapper, jre, unzip }:
 
 stdenv.mkDerivation rec {
-  version = "1.0.0-beta-4584";
+  version = "1.0.0-rc-1036";
   name = "kotlin-${version}";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip";
-    sha256 = "191698784f4a1f769df14757bad40243293aa6bc3d8e906bfa0c80c3db0a1d2c";
+    sha256 = "8d72ff925678a2172fbbefcb6f0c5a195a300dccf240e5add16c3e8d86e13d67";
   };
 
-  propagatedBuildInputs = [ jre which ] ;
+  propagatedBuildInputs = [ jre ] ;
   buildInputs = [ makeWrapper unzip ] ;
 
   installPhase = ''