added eggdrop, iftop

svn path=/nixpkgs/trunk/; revision=17710
This commit is contained in:
Rob Vermaas
2009-10-08 07:01:55 +00:00
parent 5fe030ee0a
commit 6132b946ac
3 changed files with 50 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{stdenv, fetchurl, tcl}:
stdenv.mkDerivation {
name = "eggdrop-1.6.19";
src = fetchurl {
url = ftp://ftp.eggheads.org/pub/eggdrop/GNU/1.6/eggdrop1.6.19+ctcpfix.tar.gz;
sha256 = "1lpa6sqwizn8y30i14559j3427vi743pmsxjq9g70x4m71hmshvi";
};
buildInputs = [tcl];
preConfigure = ''
prefix=$out/eggdrop
ensureDir $prefix
'';
postConfigure = ''
make config
'';
configureFlags = "--with-tcllib=${tcl}/lib/libtcl8.5.so --with-tclinc=${tcl}/include/tcl.h";
}