nixpkgs/pkgs/servers/irc/charybdis/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, bison, flex, openssl, gnutls }:
2015-05-09 18:39:49 +00:00
stdenv.mkDerivation rec {
pname = "charybdis";
version = "4.1.2";
2015-05-09 18:39:49 +00:00
2016-04-12 00:34:28 +00:00
src = fetchFromGitHub {
owner = "charybdis-ircd";
repo = "charybdis";
rev = "${pname}-${version}";
sha256 = "1lndk0yp27qm8bds4jd204ynxcq92fqmpfb0kkcla5zgky3miks3";
2015-05-09 18:39:49 +00:00
};
2018-07-15 19:30:59 +00:00
postPatch = ''
substituteInPlace include/defaults.h --replace 'PKGLOCALSTATEDIR "' '"/var/lib/charybdis'
substituteInPlace include/defaults.h --replace 'ETCPATH "' '"/etc/charybdis'
2018-07-15 19:30:59 +00:00
'';
autoreconfPhase = "sh autogen.sh";
2015-05-09 18:39:49 +00:00
configureFlags = [
"--enable-epoll"
"--enable-ipv6"
"--enable-openssl=${openssl.dev}"
2015-05-09 18:39:49 +00:00
"--with-program-prefix=charybdis-"
];
2018-07-15 19:30:59 +00:00
nativeBuildInputs = [ autoreconfHook bison flex ];
buildInputs = [ openssl gnutls ];
2015-05-09 18:39:49 +00:00
meta = with lib; {
2016-04-12 00:34:28 +00:00
description = "IRCv3 server designed to be highly scalable";
homepage = "https://github.com/charybdis-ircd/charybdis";
2016-04-12 00:34:28 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ lassulus fpletz ];
platforms = platforms.unix;
2015-05-09 18:39:49 +00:00
};
}