1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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
'';
NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"
+ stdenv.lib.optionalString stdenv.isDarwin " -Wno-error=format-security";
# TODO: Check if that's still needed
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin " -Wno-error=format-security";
doCheck = true;