I forgot a file for the new tk. Here it is.
svn path=/nixpkgs/trunk/; revision=15435
This commit is contained in:
parent
ef25944cdb
commit
3b3799f4c2
17
pkgs/development/libraries/tk/8.5.7.nix
Normal file
17
pkgs/development/libraries/tk/8.5.7.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
args: with args;
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "tk-${version}";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/tcl/tk${version}-src.tar.gz";
|
||||||
|
sha256 = "0c5gsy3nlwl0wn9swz4k4v7phy7nzjl317gca1jykgf4jz9nwdnr";
|
||||||
|
};
|
||||||
|
postInstall = ''
|
||||||
|
ln -s $out/bin/wish* $out/bin/wish
|
||||||
|
'';
|
||||||
|
configureFlags="--with-tcl=${tcl}/lib";
|
||||||
|
preConfigure = "cd unix";
|
||||||
|
|
||||||
|
buildInputs = [tcl x11];
|
||||||
|
inherit tcl;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user