Fixed wish in Tk

svn path=/nixpkgs/branches/stdenv-updates/; revision=10584
This commit is contained in:
Yury G. Kudryashov 2008-02-10 17:38:12 +00:00
parent 83e82c9872
commit f27c53669a

View file

@ -7,7 +7,7 @@ stdenv.mkDerivation {
sha256 = "0cciavzd05bpm5yfppid0s0vsf8kabwia9620vgvi26sv1gjgwhb"; sha256 = "0cciavzd05bpm5yfppid0s0vsf8kabwia9620vgvi26sv1gjgwhb";
}; };
postInstall = '' postInstall = ''
echo -e '#! /bin/sh \n $( readlink -f $( which wish${__substring 0 3 version}) ) "$@"' >$out/bin/wish echo -e '#! /bin/sh \n $( readlink -f $( type -tP wish${__substring 0 3 version}) ) "$@"' >$out/bin/wish
chmod a+x $out/bin/wish chmod a+x $out/bin/wish
''; '';
configureFlags="--with-tcl=${tcl}/lib"; configureFlags="--with-tcl=${tcl}/lib";