added eggdrop, iftop
svn path=/nixpkgs/trunk/; revision=17710
This commit is contained in:
@@ -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";
|
||||
}
|
||||
Reference in New Issue
Block a user