newsboat: remove no longer needed NIX_CFLAGS

This commit is contained in:
Doron Behar 2020-03-23 10:13:15 +02:00
parent 6f0c123d8a
commit a0e990a667

View file

@ -34,8 +34,8 @@ rustPlatform.buildRustPackage rec {
make make
''; '';
NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare" # TODO: Check if that's still needed
+ stdenv.lib.optionalString stdenv.isDarwin " -Wno-error=format-security"; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin " -Wno-error=format-security";
doCheck = true; doCheck = true;