2016-04-12 01:34:28 +01:00
|
|
|
{ stdenv, fetchFromGitHub, bison, flex, openssl }:
|
2015-05-09 19:39:49 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-06-20 00:57:55 +01:00
|
|
|
name = "charybdis-3.5.5";
|
2015-05-09 19:39:49 +01:00
|
|
|
|
2016-04-12 01:34:28 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "charybdis-ircd";
|
|
|
|
repo = "charybdis";
|
|
|
|
rev = name;
|
2017-06-20 00:57:55 +01:00
|
|
|
sha256 = "16bl516hcj1chgzkfnpg9bf9s6zr314pqzhlz6641lgyzaw1z3w0";
|
2015-05-09 19:39:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./remove-setenv.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-epoll"
|
|
|
|
"--enable-ipv6"
|
2016-04-16 18:44:32 +01:00
|
|
|
"--enable-openssl=${openssl.dev}"
|
2015-05-09 19:39:49 +01:00
|
|
|
"--with-program-prefix=charybdis-"
|
2017-05-25 22:28:50 +01:00
|
|
|
"--sysconfdir=/etc/charybdis"
|
2015-05-09 19:39:49 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ bison flex openssl ];
|
|
|
|
|
2016-04-12 01:34:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "IRCv3 server designed to be highly scalable";
|
2017-08-17 23:01:30 +01:00
|
|
|
homepage = http://atheme.org/projects/charybdis.html;
|
2016-04-12 01:34:28 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ lassulus fpletz ];
|
|
|
|
platforms = platforms.unix;
|
2015-05-09 19:39:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|