Fixed stable socat (applied patch by Nicolas Pierron); updated Tk installation step for XMaxima compatibility

svn path=/nixpkgs/branches/stdenv-updates/; revision=10576
This commit is contained in:
Yury G. Kudryashov 2008-02-10 17:36:23 +00:00
parent b7b4efd867
commit 63e46d78d0
4 changed files with 22 additions and 23 deletions

View File

@ -0,0 +1,18 @@
args: with args;
stdenv.mkDerivation {
name = "tk-${version}";
src = fetchurl {
url = "mirror://sourceforge/tcl/tk${version}-src.tar.gz";
sha256 = "0cciavzd05bpm5yfppid0s0vsf8kabwia9620vgvi26sv1gjgwhb";
};
postInstall = ''
echo -e '#! /bin/sh \n $( readlink -f $( which wish${__substring 0 3 version}) ) "$@"' >$out/bin/wish
chmod a+x $out/bin/wish
'';
configureFlags="--with-tcl=${tcl}/lib";
preConfigure = "cd unix";
buildInputs = [tcl x11];
inherit tcl;
}

View File

@ -1,10 +0,0 @@
source $stdenv/setup
configureFlags="--with-tcl=$tcl/lib"
preConfigure() {
cd unix
}
preConfigure=preConfigure
genericBuild

View File

@ -1,12 +0,0 @@
{stdenv, fetchurl, tcl, x11}:
stdenv.mkDerivation {
name = "tk-8.4.16";
builder = ./builder.sh;
src = fetchurl {
url = mirror://sourceforge/tcl/tk8.4.16-src.tar.gz;
sha256 = "0cciavzd05bpm5yfppid0s0vsf8kabwia9620vgvi26sv1gjgwhb";
};
buildInputs = [tcl x11];
inherit tcl;
}

View File

@ -2649,10 +2649,13 @@ rec {
qt = qt4;
};
tk = import ../development/libraries/tk {
tkFun = lib.sumArgs (selectVersion ../development/libraries/tk) {
inherit fetchurl stdenv tcl x11;
version = "8.4.16";
};
tk = tkFun null;
unixODBC = import ../development/libraries/unixODBC {
inherit fetchurl stdenv;
};