charybdis: 3.5.1 -> 3.5.3 (security)

Fixes CVE-2016-7143 (certificate fingerprint spoofing through crafted
SASL messages).
This commit is contained in:
Franz Pletz 2016-09-07 08:12:02 +02:00
parent 5929399527
commit 5f6557d437
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, bison, flex, openssl }: { stdenv, fetchFromGitHub, bison, flex, openssl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "charybdis-3.5.1"; name = "charybdis-3.5.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "charybdis-ircd"; owner = "charybdis-ircd";
repo = "charybdis"; repo = "charybdis";
rev = name; rev = name;
sha256 = "12lwfcgszama7140l1qhmhf1v05csipswrvqzmg8pkaazbag4ka7"; sha256 = "1s8p26lrc5vm08gi6hc5gqidgyj7v5bzm4d2g81v4xk387f85lnc";
}; };
patches = [ patches = [
@ -21,8 +21,6 @@ stdenv.mkDerivation rec {
"--with-program-prefix=charybdis-" "--with-program-prefix=charybdis-"
]; ];
hardeningDisable = [ "format" ];
buildInputs = [ bison flex openssl ]; buildInputs = [ bison flex openssl ];
meta = with stdenv.lib; { meta = with stdenv.lib; {