diff options
author | tv <tv@shackspace.de> | 2015-07-19 18:50:45 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-07-19 18:50:45 +0200 |
commit | a4cb007999e3f6803fab4c695f61c3cd53ef674a (patch) | |
tree | 0b36dcf98a65b108a7ac87d80a7be0bfc4f7968e /Zpkgs/tv/charybdis/default.nix | |
parent | 5600bb8be24fa1a21fcb88d64ccd698606a4dcbb (diff) |
Zpkgs tv charybdis: import from NixOS master
Diffstat (limited to 'Zpkgs/tv/charybdis/default.nix')
-rw-r--r-- | Zpkgs/tv/charybdis/default.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Zpkgs/tv/charybdis/default.nix b/Zpkgs/tv/charybdis/default.nix new file mode 100644 index 000000000..a38a25c8a --- /dev/null +++ b/Zpkgs/tv/charybdis/default.nix @@ -0,0 +1,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 = "43a9b61c427cd0f3fa2c192890b8a48d9ea6fb7f"; + sha256 = "ae2c8a72e6a29c901f9b51759b542ee12c4ec918050a2d9d65e5635077a0fcef"; + }; + + patches = [ + ./remove-setenv.patch + ]; + + configureFlags = [ + "--enable-epoll" + "--enable-ipv6" + "--enable-openssl=${openssl}" + "--with-program-prefix=charybdis-" + ]; + + 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; + }; + + +} |