3
0
Fork 0
forked from mirrors/nixpkgs

virtualbox-guest-additions: fix dlopen of libXrandr

The library could not be loaded which prevented autoresizing
when using the VMSVGA adapter.
This commit is contained in:
Pascal Bach 2020-05-01 00:03:05 +02:00
parent 33bc279247
commit 9c300b6e2c

View file

@ -19,6 +19,7 @@ let
dlopenLibs = [
{ name = "libdbus-1.so"; pkg = dbus; }
{ name = "libXfixes.so"; pkg = xorg.libXfixes; }
{ name = "libXrandr.so"; pkg = xorg.libXrandr; }
];
in stdenv.mkDerivation rec {