Flashplayer: add libXcursor to the RPATH

This prevented Flash from working after the last update.
This commit is contained in:
Eelco Dolstra 2012-10-04 21:15:26 -04:00
parent c592992b14
commit 99f38ee7a5

View file

@ -11,8 +11,9 @@
, libX11 , libX11
, libXext , libXext
, libXrender , libXrender
, libXcursor
, libXt , libXt
, gtk , gtk
, glib , glib
, pango , pango
, cairo , cairo
@ -65,7 +66,7 @@ stdenv.mkDerivation {
name = "flashplayer-${src.version}"; name = "flashplayer-${src.version}";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { inherit (src) url sha256; }; src = fetchurl { inherit (src) url sha256; };
inherit zlib alsaLib; inherit zlib alsaLib;
@ -76,7 +77,7 @@ stdenv.mkDerivation {
rpath = stdenv.lib.makeLibraryPath rpath = stdenv.lib.makeLibraryPath
[ zlib alsaLib curl nss nspr fontconfig freetype expat libX11 [ zlib alsaLib curl nss nspr fontconfig freetype expat libX11
libXext libXrender libXt gtk glib pango atk cairo gdk_pixbuf libXext libXrender libXcursor libXt gtk glib pango atk cairo gdk_pixbuf
]; ];
buildPhase = ":"; buildPhase = ":";