From 69a5e300a6a2625d5caaaf277d02a0f215f45f3d Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 11 Aug 2016 17:37:13 -0500 Subject: [PATCH] bs1770gain: disable clang error Uuse -Wno-error to make clang happy. --- pkgs/applications/audio/bs1770gain/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/audio/bs1770gain/default.nix b/pkgs/applications/audio/bs1770gain/default.nix index db6843f4535b..862f52636951 100644 --- a/pkgs/applications/audio/bs1770gain/default.nix +++ b/pkgs/applications/audio/bs1770gain/default.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { buildInputs = [ ffmpeg sox ]; + NIX_CFLAGS_COMPILE = "-Wno-error"; + meta = { description = "A audio/video loudness scanner implementing ITU-R BS.1770"; license = stdenv.lib.licenses.gpl2Plus;