summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/tcl
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-05-03 14:35:56 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-05-03 14:35:56 +0000
commitef25944cdb714e5ef3afcfafe4672766816298f9 (patch)
tree327f59a7a041a54643496f27c016e86f92f348f9 /pkgs/development/interpreters/tcl
parent63c8ccf84c6b50299b8df94cf709f08b057d06e4 (diff)
Updating tcl/tk
svn path=/nixpkgs/trunk/; revision=15434
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 7cc58b92145c..c9aa16ce28d4 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.4.18";
+ name = "tcl-8.5.7";
src = fetchurl {
- url = mirror://sourceforge/tcl/tcl8.4.18-src.tar.gz;
- sha256 = "197h3m2lc5a6famc683zhjp55774gf8zwggfy2893v48lp5p7qny";
+ url = mirror://sourceforge/tcl/tcl8.5.7-src.tar.gz;
+ sha256 = "1wk67qq12bdbaqsi6cxwj6ra8nc8ph1na9rh808kfk6hm18qvlk7";
};
preConfigure = "cd unix";
postInstall = ''
make install-private-headers
- ln -s $out/bin/tclsh8.4 $out/bin/tclsh
+ ln -s $out/bin/tclsh8.5 $out/bin/tclsh
'';
meta = {