summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2016-02-15 16:47:58 +0000
committerTim Steinbach <tim@nequissimus.com>2016-02-15 16:47:58 +0000
commit5a7324ba131c725a178d5b01890c601a18cedc46 (patch)
tree0c198f902197f9e97d3d45edfcbf2354464ef763 /pkgs
parent50bd1a0e8f388ba64b5f8fca39ed332c051ff7b2 (diff)
downloadnixpkgs-5a7324ba131c725a178d5b01890c601a18cedc46.tar
nixpkgs-5a7324ba131c725a178d5b01890c601a18cedc46.tar.gz
nixpkgs-5a7324ba131c725a178d5b01890c601a18cedc46.tar.bz2
nixpkgs-5a7324ba131c725a178d5b01890c601a18cedc46.tar.lz
nixpkgs-5a7324ba131c725a178d5b01890c601a18cedc46.tar.xz
nixpkgs-5a7324ba131c725a178d5b01890c601a18cedc46.tar.zst
nixpkgs-5a7324ba131c725a178d5b01890c601a18cedc46.zip
kotlin: 1.0.0-rc-1036 -> 1.0.0
Diffstat (limited to 'pkgs')
-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 a6f5dcc2159..2433f5ab579 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,16 +1,16 @@
-{ stdenv, fetchurl, makeWrapper, jre, unzip }:
+{ stdenv, fetchurl, makeWrapper, jre, unzip, which }:
 
 stdenv.mkDerivation rec {
-  version = "1.0.0-rc-1036";
+  version = "1.0.0";
   name = "kotlin-${version}";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip";
-    sha256 = "8d72ff925678a2172fbbefcb6f0c5a195a300dccf240e5add16c3e8d86e13d67";
+    sha256 = "0dp5mab35sv3nsgj488ibyn6x6xw2rka76s7kygbhqhjc429kpgy";
   };
 
   propagatedBuildInputs = [ jre ] ;
-  buildInputs = [ makeWrapper unzip ] ;
+  buildInputs = [ makeWrapper unzip which ] ;
 
   installPhase = ''
     mkdir -p $out