linuxPackages.virtualboxGuestAdditions: don't install VBoxOGL for now
It seems to be broken upstream too, and fixing it is far down the priority list: https://www.virtualbox.org/pipermail/vbox-dev/2017-June/014561.html Additionally, 3d support seems to rely on VBoxOGL.so being symlinked from libGL.so (which we can't), and Oracle doesn't plan on supporting libglvnd either. (#18457)
This commit is contained in:
parent
33dc8bc5d0
commit
8b34ec423c
@ -107,11 +107,17 @@ stdenv.mkDerivation {
|
|||||||
wrapProgram $out/bin/VBoxClient-all \
|
wrapProgram $out/bin/VBoxClient-all \
|
||||||
--prefix PATH : "${which}/bin"
|
--prefix PATH : "${which}/bin"
|
||||||
|
|
||||||
# Install OpenGL libraries
|
# Don't install VBoxOGL for now
|
||||||
mkdir -p $out/lib
|
# It seems to be broken upstream too, and fixing it is far down the priority list:
|
||||||
cp -v lib/VBoxOGL*.so $out/lib
|
# https://www.virtualbox.org/pipermail/vbox-dev/2017-June/014561.html
|
||||||
mkdir -p $out/lib/dri
|
# Additionally, 3d support seems to rely on VBoxOGL.so being symlinked from
|
||||||
ln -s $out/lib/VBoxOGL.so $out/lib/dri/vboxvideo_dri.so
|
# libGL.so (which we can't), and Oracle doesn't plan on supporting libglvnd
|
||||||
|
# either. (#18457)
|
||||||
|
## Install OpenGL libraries
|
||||||
|
#mkdir -p $out/lib
|
||||||
|
#cp -v lib/VBoxOGL*.so $out/lib
|
||||||
|
#mkdir -p $out/lib/dri
|
||||||
|
#ln -s $out/lib/VBoxOGL.so $out/lib/dri/vboxvideo_dri.so
|
||||||
|
|
||||||
# Install desktop file
|
# Install desktop file
|
||||||
mkdir -p $out/share/autostart
|
mkdir -p $out/share/autostart
|
||||||
|
Loading…
Reference in New Issue
Block a user