Merge branch 'pd' of git://github.com/iyzsong/nixpkgs into test-1515
tcl/tk: update to 8.5.15, fix #1479
This commit is contained in:
commit
decd2feb0a
4 changed files with 35 additions and 12 deletions
|
@ -1,11 +1,11 @@
|
|||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tcl-8.5.7";
|
||||
name = "tcl-8.5.15";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/tcl/tcl8.5.7-src.tar.gz;
|
||||
sha256 = "1wk67qq12bdbaqsi6cxwj6ra8nc8ph1na9rh808kfk6hm18qvlk7";
|
||||
url = mirror://sourceforge/tcl/tcl8.5.15-src.tar.gz;
|
||||
sha256 = "0kl8lbfwy4v4q4461wjmva95h0pgiprykislpw4nnpkrc7jalkpj";
|
||||
};
|
||||
|
||||
preConfigure = "cd unix";
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
{ stdenv, fetchurl, tcl, x11, libX11 }:
|
||||
{ stdenv, fetchurl, pkgconfig, tcl, libXft }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tk-8.5.7";
|
||||
name = "tk-8.5.15";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/tcl/tk8.5.7-src.tar.gz";
|
||||
sha256 = "0c5gsy3nlwl0wn9swz4k4v7phy7nzjl317gca1jykgf4jz9nwdnr";
|
||||
url = "mirror://sourceforge/tcl/tk8.5.15-src.tar.gz";
|
||||
sha256 = "0grj0k0hljvwiz913pafqibz18fzk9xjxf0nzqrd9zdls036fp41";
|
||||
};
|
||||
|
||||
patches = [ ./different-prefix-with-tcl.patch ];
|
||||
|
||||
postInstall = ''
|
||||
ln -s $out/bin/wish* $out/bin/wish
|
||||
|
@ -16,7 +18,7 @@ stdenv.mkDerivation {
|
|||
|
||||
preConfigure = "cd unix";
|
||||
|
||||
buildInputs = [ tcl x11 libX11 ];
|
||||
buildInputs = [ pkgconfig tcl libXft ];
|
||||
|
||||
inherit tcl;
|
||||
|
||||
|
@ -27,6 +29,7 @@ stdenv.mkDerivation {
|
|||
meta = {
|
||||
description = "A widget toolkit that provides a library of basic elements for building a GUI in many different programming languages";
|
||||
homepage = http://www.tcl.tk/;
|
||||
license = stdenv.lib.licenses.tcltk;
|
||||
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
--- tk8.5.15-orig/unix/Makefile.in 2014-01-25 08:57:45.626713122 +0800
|
||||
+++ tk8.5.15/unix/Makefile.in 2014-01-25 08:59:35.315341825 +0800
|
||||
@@ -995,7 +995,8 @@
|
||||
$(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tkVisual.c
|
||||
|
||||
tkWindow.o: $(GENERIC_DIR)/tkWindow.c
|
||||
- $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tkWindow.c
|
||||
+ $(CC) -c $(CC_SWITCHES) -DTK_LIBRARY=\"${TK_LIBRARY}\" \
|
||||
+ $(GENERIC_DIR)/tkWindow.c
|
||||
|
||||
tkButton.o: $(GENERIC_DIR)/tkButton.c
|
||||
$(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tkButton.c
|
||||
--- tk8.5.15-orig/generic/tkWindow.c 2014-01-25 10:10:03.964476436 +0800
|
||||
+++ tk8.5.15/generic/tkWindow.c 2014-01-25 10:08:06.020950933 +0800
|
||||
@@ -983,6 +983,7 @@
|
||||
|
||||
Tcl_SetVar(interp, "tk_patchLevel", TK_PATCH_LEVEL, TCL_GLOBAL_ONLY);
|
||||
Tcl_SetVar(interp, "tk_version", TK_VERSION, TCL_GLOBAL_ONLY);
|
||||
+ Tcl_SetVar(interp, "tk_library", TK_LIBRARY, TCL_GLOBAL_ONLY);
|
||||
|
||||
tsdPtr->numMainWindows++;
|
||||
return tkwin;
|
|
@ -5886,9 +5886,7 @@ let
|
|||
|
||||
tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { };
|
||||
|
||||
tk = callPackage ../development/libraries/tk {
|
||||
libX11 = xlibs.libX11;
|
||||
};
|
||||
tk = callPackage ../development/libraries/tk { };
|
||||
|
||||
tnt = callPackage ../development/libraries/tnt { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue