xorg.xf86videoomap: fix build with gcc9

wip/yesman
Franz Pletz 5 years ago
parent d15f63bfad
commit baa5a73ba1
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
  1. 4
      pkgs/servers/x11/xorg/overrides.nix

@ -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" ];
});

Loading…
Cancel
Save