about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2016-08-11 17:37:13 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2016-08-16 19:25:29 +0000
commit69a5e300a6a2625d5caaaf277d02a0f215f45f3d (patch)
tree3fe7bca7c98f80e980aa6084cfe9cb5778d4ff6c
parent9e6c2adfca97b8dfca47899ce41314a3e951afbc (diff)
downloadnixlib-69a5e300a6a2625d5caaaf277d02a0f215f45f3d.tar
nixlib-69a5e300a6a2625d5caaaf277d02a0f215f45f3d.tar.gz
nixlib-69a5e300a6a2625d5caaaf277d02a0f215f45f3d.tar.bz2
nixlib-69a5e300a6a2625d5caaaf277d02a0f215f45f3d.tar.lz
nixlib-69a5e300a6a2625d5caaaf277d02a0f215f45f3d.tar.xz
nixlib-69a5e300a6a2625d5caaaf277d02a0f215f45f3d.tar.zst
nixlib-69a5e300a6a2625d5caaaf277d02a0f215f45f3d.zip
bs1770gain: disable clang error
Uuse -Wno-error to make clang happy.
-rw-r--r--pkgs/applications/audio/bs1770gain/default.nix2
1 files changed, 2 insertions, 0 deletions
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;