add xchat and tcl

svn path=/nixpkgs/trunk/; revision=4301
This commit is contained in:
Armijn Hemel
2005-11-22 12:05:18 +00:00
parent 39b9f03964
commit 6ec2dea85c
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
source $stdenv/setup
preConfigure() {
cd unix
}
preConfigure=preConfigure
genericBuild

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "tcl-8.4.11";
builder = ./builder.sh;
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/tcl/tcl8.4.11-src.tar.gz;
md5 = "629dfea34e4087eb4683f834060abb63";
};
}