mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 22:11:45 +03:00
libomxil-bellagio: fix build on gcc8
Added the `-Wno-error=array-bounds` flag. Fixes #40213.
This commit is contained in:
parent
2da936e61f
commit
c10842fe0b
@ -14,6 +14,10 @@ stdenv.mkDerivation rec {
|
||||
|
||||
patches = [ ./fedora-fixes.patch ];
|
||||
|
||||
# Fix for #40213, probably permanent, because upstream doesn't seem to be
|
||||
# developed anymore. Alternatively, gcc7Stdenv could be used.
|
||||
NIX_CFLAGS_COMPILE = "-Wno-error=array-bounds";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://sourceforge.net/projects/omxil/;
|
||||
description = "An opensource implementation of the Khronos OpenMAX Integration Layer API to access multimedia components";
|
||||
|
Loading…
Reference in New Issue
Block a user