2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl, openssl, zlib }:
|
2009-03-03 05:27:40 -08:00
|
|
|
|
2008-01-30 09:20:48 -08:00
|
|
|
stdenv.mkDerivation {
|
2015-01-29 03:42:56 -08:00
|
|
|
name = "ircd-hybrid-8.2.2";
|
2007-08-08 13:33:36 -07:00
|
|
|
|
2008-01-30 09:20:48 -08:00
|
|
|
src = fetchurl {
|
2015-01-29 03:42:56 -08:00
|
|
|
url = mirror://sourceforge/ircd-hybrid/ircd-hybrid-8.2.2.tgz;
|
|
|
|
sha256 = "0k9w2mxgi03cpnmagshcr5v6qjgnmyidf966b50dd6yn1fgqcibm";
|
2007-08-08 13:33:36 -07:00
|
|
|
};
|
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
buildInputs = [ openssl zlib ];
|
2007-08-08 13:33:36 -07:00
|
|
|
|
2009-03-03 05:27:40 -08:00
|
|
|
configureFlags =
|
2016-04-16 10:44:32 -07:00
|
|
|
"--with-nicklen=100 --with-topiclen=360 --enable-openssl=${openssl.dev}";
|
2007-08-08 13:33:36 -07:00
|
|
|
|
2010-11-11 11:57:46 -08:00
|
|
|
postInstall = "echo postinstall; mkdir -p \${out}/ ; rm -rf \${out}/logs ; ln -s /home/ircd \${out}/logs;";
|
2007-08-08 13:33:36 -07:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "An IPv6-capable IRC server";
|
2007-08-08 13:33:36 -07:00
|
|
|
};
|
|
|
|
}
|