From a0e990a6677823103f14db249cbc77071c34c3ca Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 23 Mar 2020 10:13:15 +0200 Subject: [PATCH] newsboat: remove no longer needed NIX_CFLAGS --- pkgs/applications/networking/feedreaders/newsboat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/feedreaders/newsboat/default.nix b/pkgs/applications/networking/feedreaders/newsboat/default.nix index deb87c43f40..15328c56d27 100644 --- a/pkgs/applications/networking/feedreaders/newsboat/default.nix +++ b/pkgs/applications/networking/feedreaders/newsboat/default.nix @@ -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;