blob: f3e6be40ee03eb2e9a62fe7b6e6ee458c42712df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{ stdenv, fetchgit, bison, flex, openssl }:
stdenv.mkDerivation rec {
name = "charybdis-3.5.0-rc1";
src = fetchgit {
url = "https://github.com/atheme/charybdis.git";
rev = "61815bf9324e872f51255e09fe37a8c595f94a60";
sha256 = "0zsd6xk2cnspc1cvryy2296p3ix4hwjd9k24wmgbh5wzks0wahwy";
};
patches = [
./remove-setenv.patch
];
configureFlags = [
"--enable-epoll"
"--enable-ipv6"
"--enable-openssl=${openssl}"
"--enable-small-net"
"--with-program-prefix=charybdis-"
"--sysconfdir=/tmp"
];
buildInputs = [ bison flex openssl ];
meta = {
description = "An extremely scalable ircd with some cooperation with the ratbox and ircu guys";
homepage = https://github.com/atheme/charybdis;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.lassulus ];
platforms = stdenv.lib.platforms.linux;
};
}
|