tcl/tk: 8.6.6 -> 8.6.9

Changelog for Tcl: https://github.com/tcltk/tcl/blob/core-8-6-9/changes#L8797
Changelog for Tk: https://github.com/tcltk/tk/blob/master/changes#L7417

Tk release is actually v8.6.9.1 while Tcl is v8.6.9
This commit is contained in:
c0bw3b
2019-04-27 07:09:05 +02:00
committed by Frederik Rietdijk
parent 959b199991
commit 3ee1b52371
4 changed files with 12 additions and 8 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
callPackage ./generic.nix (args // rec {
release = "8.6";
version = "${release}.6";
version = "${release}.9";
src = fetchurl {
url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
sha256 = "01zypqhy57wvh1ikk28bg733sk5kf4q568pq9v6fvcz4h6bl0rd2";
sha256 = "0kjzj7mkzfnb7ksxanbibibfpciyvsh5ffdlhs0bmfc75kgd435d";
};
})
@@ -33,11 +33,12 @@ stdenv.mkDerivation rec {
postInstall = ''
make install-private-headers
ln -s $out/bin/tclsh${release} $out/bin/tclsh
ln -s $out/lib/libtcl${release}.so $out/lib/libtcl.so
'';
meta = with stdenv.lib; {
description = "The Tcl scription language";
homepage = http://www.tcl.tk/;
description = "The Tcl scripting language";
homepage = https://www.tcl.tk/;
license = licenses.tcltk;
platforms = platforms.all;
maintainers = with maintainers; [ vrthra ];