xorg.xf86videovmware: fix for GFX support

Fix the mesa dependency for `xorg.xf86videovmware`. Add `llvm_6` because
`mesa_noglu` has a runtime dependency on clang (see TODO in
`development/libraries/mesa`).
This commit is contained in:
Bart Bakker 2018-10-25 19:21:04 +02:00
parent f22413f874
commit f565b95ca3
No known key found for this signature in database
GPG Key ID: 8BC1D8F4C6C7B548

View File

@ -2,10 +2,10 @@
stdenv, makeWrapper, lib, fetchurl, fetchpatch,
automake, autoconf, libtool, intltool, mtdev, libevdev, libinput,
python, freetype, apple_sdk, tradcpp, fontconfig, mesa_drivers,
python, freetype, apple_sdk, tradcpp, fontconfig,
libGL, spice-protocol, zlib, libGLU, dbus, libunwind, libdrm,
mesa_noglu, udev, bootstrap_cmds, bison, flex, clangStdenv, autoreconfHook,
mcpp, epoxy, openssl, pkgconfig }:
mcpp, epoxy, openssl, pkgconfig, llvm_6 }:
let
inherit (stdenv) lib isDarwin;
@ -394,7 +394,7 @@ self: super:
});
xf86videovmware = super.xf86videovmware.overrideAttrs (attrs: {
buildInputs = attrs.buildInputs ++ [ mesa_drivers ]; # for libxatracker
buildInputs = attrs.buildInputs ++ [ mesa_noglu llvm_6 ]; # for libxatracker
meta = attrs.meta // {
platforms = ["i686-linux" "x86_64-linux"];
};