Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2da936e61fd3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c10842fe0b27
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 9, 2018

  1. libomxil-bellagio: fix build on gcc8

    Added the `-Wno-error=array-bounds` flag. Fixes #40213.
    Synthetica9 authored and globin committed May 9, 2018
    Copy the full SHA
    c10842f View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/development/libraries/libomxil-bellagio/default.nix
4 changes: 4 additions & 0 deletions pkgs/development/libraries/libomxil-bellagio/default.nix
Original file line number Diff line number Diff line change
@@ -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";