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:
parent
33bc279247
commit
9c300b6e2c
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue