aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/irc/charybdis
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-04-12 02:34:28 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-04-12 04:26:13 +0200
commitecb94c61d483b5e9e9c881a7528e8b0c4aa4c953 (patch)
tree44fa8032d9a1e4368387e090254f3829688ae9d9 /pkgs/servers/irc/charybdis
parent2a70630c8c67892b227c5ee1c2f6e68d083f161e (diff)
chaybdis: 3.5.0-rc1 -> 3.5.1
Diffstat (limited to 'pkgs/servers/irc/charybdis')
-rw-r--r--pkgs/servers/irc/charybdis/default.nix26
1 files changed, 13 insertions, 13 deletions
diff --git a/pkgs/servers/irc/charybdis/default.nix b/pkgs/servers/irc/charybdis/default.nix
index a38a25c8a5cb..c8368fa95248 100644
--- a/pkgs/servers/irc/charybdis/default.nix
+++ b/pkgs/servers/irc/charybdis/default.nix
@@ -1,12 +1,13 @@
-{ stdenv, fetchgit, bison, flex, openssl }:
+{ stdenv, fetchFromGitHub, bison, flex, openssl }:
stdenv.mkDerivation rec {
- name = "charybdis-3.5.0-rc1";
+ name = "charybdis-3.5.1";
- src = fetchgit {
- url = "https://github.com/atheme/charybdis.git";
- rev = "43a9b61c427cd0f3fa2c192890b8a48d9ea6fb7f";
- sha256 = "ae2c8a72e6a29c901f9b51759b542ee12c4ec918050a2d9d65e5635077a0fcef";
+ src = fetchFromGitHub {
+ owner = "charybdis-ircd";
+ repo = "charybdis";
+ rev = name;
+ sha256 = "12lwfcgszama7140l1qhmhf1v05csipswrvqzmg8pkaazbag4ka7";
};
patches = [
@@ -22,13 +23,12 @@ stdenv.mkDerivation rec {
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;
+ meta = with stdenv.lib; {
+ description = "IRCv3 server designed to be highly scalable";
+ homepage = http://www.charybdis.io/;
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ lassulus fpletz ];
+ platforms = platforms.unix;
};
-
}