Added libXfixes to the rpath of VBoxClient, so that the shared host/guest clipboard will work
svn path=/nixpkgs/trunk/; revision=17789
This commit is contained in:
parent
bc3c78536e
commit
131c5f7e33
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, lib, patchelf, cdrkit, kernel
|
{ stdenv, fetchurl, lib, patchelf, cdrkit, kernel
|
||||||
, libX11, libXt, libXext, libXmu, libXcomposite}:
|
, libX11, libXt, libXext, libXmu, libXcomposite, libXfixes}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "VirtualBox-GuestAdditions-3.0.8";
|
name = "VirtualBox-GuestAdditions-3.0.8";
|
||||||
@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Change rpath for various binaries and libraries
|
# Change rpath for various binaries and libraries
|
||||||
patchelf --set-rpath ${stdenv.gcc.gcc}/lib:${libX11}/lib:${libXt}/lib:${libXext}/lib:${libXmu}/lib ./VBoxClient
|
patchelf --set-rpath ${stdenv.gcc.gcc}/lib:${libX11}/lib:${libXt}/lib:${libXext}/lib:${libXmu}/lib:${libXfixes}/lib ./VBoxClient
|
||||||
|
|
||||||
for i in ./VBoxOGL{arrayspu,errorspu,feedbackspu,packspu,passthroughspu}.so
|
for i in ./VBoxOGL{arrayspu,errorspu,feedbackspu,packspu,passthroughspu}.so
|
||||||
do
|
do
|
||||||
|
@ -5745,7 +5745,7 @@ let
|
|||||||
|
|
||||||
virtualboxGuestAdditions = import ../applications/virtualization/virtualbox/guest-additions {
|
virtualboxGuestAdditions = import ../applications/virtualization/virtualbox/guest-additions {
|
||||||
inherit stdenv fetchurl lib patchelf cdrkit kernel;
|
inherit stdenv fetchurl lib patchelf cdrkit kernel;
|
||||||
inherit (xlibs) libX11 libXt libXext libXmu libXcomposite;
|
inherit (xlibs) libX11 libXt libXext libXmu libXcomposite libXfixes;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user