chaybdis: 3.5.0-rc1 -> 3.5.1
This commit is contained in:
parent
2a70630c8c
commit
ecb94c61d4
@ -1,12 +1,13 @@
|
|||||||
{ stdenv, fetchgit, bison, flex, openssl }:
|
{ stdenv, fetchFromGitHub, bison, flex, openssl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "charybdis-3.5.0-rc1";
|
name = "charybdis-3.5.1";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/atheme/charybdis.git";
|
owner = "charybdis-ircd";
|
||||||
rev = "43a9b61c427cd0f3fa2c192890b8a48d9ea6fb7f";
|
repo = "charybdis";
|
||||||
sha256 = "ae2c8a72e6a29c901f9b51759b542ee12c4ec918050a2d9d65e5635077a0fcef";
|
rev = name;
|
||||||
|
sha256 = "12lwfcgszama7140l1qhmhf1v05csipswrvqzmg8pkaazbag4ka7";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -22,13 +23,12 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ bison flex openssl ];
|
buildInputs = [ bison flex openssl ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "An extremely scalable ircd with some cooperation with the ratbox and ircu guys";
|
description = "IRCv3 server designed to be highly scalable";
|
||||||
homepage = https://github.com/atheme/charybdis;
|
homepage = http://www.charybdis.io/;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ stdenv.lib.maintainers.lassulus ];
|
maintainers = with maintainers; [ lassulus fpletz ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user