From 3b3799f4c258e65a4f5b070958ec748c855fdc52 Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Sun, 3 May 2009 14:36:26 +0000 Subject: I forgot a file for the new tk. Here it is. svn path=/nixpkgs/trunk/; revision=15435 --- pkgs/development/libraries/tk/8.5.7.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pkgs/development/libraries/tk/8.5.7.nix (limited to 'pkgs/development/libraries/tk') diff --git a/pkgs/development/libraries/tk/8.5.7.nix b/pkgs/development/libraries/tk/8.5.7.nix new file mode 100644 index 00000000000..56a757c8c7c --- /dev/null +++ b/pkgs/development/libraries/tk/8.5.7.nix @@ -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; +} -- cgit 1.4.1