xorg.xf86videoomap: fix build with gcc9

This commit is contained in:
Franz Pletz 2019-11-03 13:59:10 +01:00
parent d15f63bfad
commit baa5a73ba1
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -382,6 +382,10 @@ self: super:
xf86videovoodoo = super.xf86videovoodoo.overrideAttrs (attrs: { meta = attrs.meta // { broken = true; }; });
xf86videowsfb = super.xf86videowsfb.overrideAttrs (attrs: { meta = attrs.meta // { broken = true; }; });
xf86videoomap = super.xf86videoomap.overrideAttrs (attrs: {
NIX_CFLAGS_COMPILE = [ "-Wno-error=format-overflow" ];
});
xf86videoamdgpu = super.xf86videoamdgpu.overrideAttrs (attrs: {
configureFlags = [ "--with-xorg-conf-dir=$(out)/share/X11/xorg.conf.d" ];
});