about summary refs log tree commit diff
path: root/pkgs/applications/audio/oxefmsynth
diff options
context:
space:
mode:
authorHarrison Houghton <hora.rhino@gmail.com>2021-09-30 20:18:34 -0400
committerHarrison Houghton <hora.rhino@gmail.com>2021-09-30 20:18:34 -0400
commit5449d04a6b56700e26fb5e4571d9594b0f52e02a (patch)
treed76b123b27be136174cdda069b51942acbc87e80 /pkgs/applications/audio/oxefmsynth
parent9a23237031b385945132c8dac7d7ad97ece67408 (diff)
downloadnixlib-5449d04a6b56700e26fb5e4571d9594b0f52e02a.tar
nixlib-5449d04a6b56700e26fb5e4571d9594b0f52e02a.tar.gz
nixlib-5449d04a6b56700e26fb5e4571d9594b0f52e02a.tar.bz2
nixlib-5449d04a6b56700e26fb5e4571d9594b0f52e02a.tar.lz
nixlib-5449d04a6b56700e26fb5e4571d9594b0f52e02a.tar.xz
nixlib-5449d04a6b56700e26fb5e4571d9594b0f52e02a.tar.zst
nixlib-5449d04a6b56700e26fb5e4571d9594b0f52e02a.zip
oxefmsynth: fix
Well, it wasn't really broken, just emitting a zillion narrowing
warnings in generated code. Apparently "-Wno-narrowing" is how the
modern compilers like you to ask them to tone it down.
Diffstat (limited to 'pkgs/applications/audio/oxefmsynth')
-rw-r--r--pkgs/applications/audio/oxefmsynth/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/oxefmsynth/default.nix b/pkgs/applications/audio/oxefmsynth/default.nix
index 427029f3c863..0e3e801d18ca 100644
--- a/pkgs/applications/audio/oxefmsynth/default.nix
+++ b/pkgs/applications/audio/oxefmsynth/default.nix
@@ -22,7 +22,7 @@ in stdenv.mkDerivation rec {
     sha256 = "1rk71ls33a38wx8i22plsi7d89cqqxrfxknq5i4f9igsw1ipm4gn";
   };
 
-  NIX_CFLAGS_COMPILE = [ "-Wno-error=narrowing" ];
+  NIX_CFLAGS_COMPILE = [ "-Wno-narrowing" ];
 
   buildFlags = [ "VSTSDK_PATH=${vst-sdk}/VST2_SDK" ];