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,11 @@
{stdenv, fetchurl, glib, pkgconfig, tcl}:
stdenv.mkDerivation {
name = "xchat-2.6.0";
src = fetchurl {
url = http://www.xchat.org/files/source/2.6/xchat-2.6.0.tar.bz2;
md5 = "0c827bf6df0572231cbbb1e25965fb61";
};
buildInputs = [glib pkgconfig tcl];
configureFlags = "--disable-nls";
}

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";
};
}