belle-sip: add extra Wno-error flag needed by gcc11

This commit is contained in:
Fabián Heredia Montiel 2022-04-15 10:48:55 -05:00
parent 89ec69946c
commit d320445a8c

View file

@ -30,9 +30,10 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
NIX_CFLAGS_COMPILE = toString [
"-Wno-error=cast-function-type"
"-Wno-error=deprecated-declarations"
"-Wno-error=format-truncation"
"-Wno-error=cast-function-type"
"-Wno-error=stringop-overflow"
];
propagatedBuildInputs = [ libantlr3c mbedtls bctoolbox ];