about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2017-06-16 08:32:00 -0400
committerTim Steinbach <tim@nequissimus.com>2017-06-16 08:32:00 -0400
commitef2f34d3d7693df68829aa3cc8f47a12ab9fd919 (patch)
treeb2fc621346eb0cfa3a1b6ce1596905499859305b /pkgs/development/compilers
parentc3399e5934b8a9b6dbee6fdef61897df8ab769f3 (diff)
kotlin: 1.1.2 -> 1.1.2-5
Diffstat (limited to 'pkgs/development/compilers')
-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 ca788a57c7ce6..e23bee15e1bf3 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, makeWrapper, jre, unzip }:
 
 stdenv.mkDerivation rec {
-  version = "1.1.2";
+  version = "1.1.2-5";
   name = "kotlin-${version}";
 
   src = fetchurl {
     url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
-    sha256 = "0kngyv5qjjpd93i1b8gn1vw6r8p52lfjrqa2f13nf06v9aqk0vfb";
+    sha256 = "0whfnn7wf8nil9lb8hl9bccjrzwf9zpbf8pz607zg9x3q8g01p9d";
   };
 
   propagatedBuildInputs = [ jre ] ;