2008-01-30 18:20:48 +01:00
|
|
|
args: with args;
|
2009-03-03 14:27:40 +01:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
stdenv.mkDerivation {
|
2007-08-08 22:33:36 +02:00
|
|
|
name = "ircd-hybrid-7.2.2";
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-08-27 15:01:33 +02:00
|
|
|
url = mirror://sourceforge/ircd-hybrid/ircd-hybrid-7.2.2.tgz;
|
2007-08-08 22:33:36 +02:00
|
|
|
sha256 = "1xn4dfbgx019mhismfnr2idhslvarlajyahj7c6bqzmarcwwrvck";
|
|
|
|
};
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
buildInputs = [openssl zlib];
|
2007-08-08 22:33:36 +02:00
|
|
|
|
2009-03-03 14:27:40 +01:00
|
|
|
configureFlags =
|
|
|
|
"--with-nicklen=100 --with-topiclen=360 --enable-openssl=${openssl}";
|
2007-08-08 22:33:36 +02:00
|
|
|
|
|
|
|
preInstall = "mkdir -p \${out}/ ; ln -s /home/ircd \${out}/logs;";
|
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "An IPv6-capable IRC server";
|
2007-08-08 22:33:36 +02:00
|
|
|
};
|
|
|
|
}
|