about summary refs log tree commit diff
path: root/pkgs/development/interpreters/tcl
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-03-26 15:39:20 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-03-26 15:39:20 -0700
commit8286f6cef36cbd3797578723c1493480828c77a3 (patch)
tree0741737e6c41d60f0e8dd71d50bdb5042726cd61 /pkgs/development/interpreters/tcl
parent008e3893d89b10f4d0e2faf091e3fd9d134ea4be (diff)
downloadnixlib-8286f6cef36cbd3797578723c1493480828c77a3.tar
nixlib-8286f6cef36cbd3797578723c1493480828c77a3.tar.gz
nixlib-8286f6cef36cbd3797578723c1493480828c77a3.tar.bz2
nixlib-8286f6cef36cbd3797578723c1493480828c77a3.tar.lz
nixlib-8286f6cef36cbd3797578723c1493480828c77a3.tar.xz
nixlib-8286f6cef36cbd3797578723c1493480828c77a3.tar.zst
nixlib-8286f6cef36cbd3797578723c1493480828c77a3.zip
tcl: 8.5.15 -> 8.6.4
Diffstat (limited to 'pkgs/development/interpreters/tcl')
-rw-r--r--pkgs/development/interpreters/tcl/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/tcl/default.nix b/pkgs/development/interpreters/tcl/default.nix
index c9a0fd7546fa..913c73f01f36 100644
--- a/pkgs/development/interpreters/tcl/default.nix
+++ b/pkgs/development/interpreters/tcl/default.nix
@@ -1,18 +1,18 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation {
-  name = "tcl-8.5.15";
+  name = "tcl-8.6.4";
 
   src = fetchurl {
-    url = mirror://sourceforge/tcl/tcl8.5.15-src.tar.gz;
-    sha256 = "0kl8lbfwy4v4q4461wjmva95h0pgiprykislpw4nnpkrc7jalkpj";
+    url = mirror://sourceforge/tcl/tcl8.6.4-src.tar.gz;
+    sha256 = "13cwa4bc85ylf5gfj9vk182lvgy60qni3f7gbxghq78wk16djvly";
   };
 
   preConfigure = "cd unix";
 
   postInstall = ''
     make install-private-headers
-    ln -s $out/bin/tclsh8.5 $out/bin/tclsh
+    ln -s $out/bin/tclsh8.6 $out/bin/tclsh
   '';
   
   meta = {