* Flash Player 9 final. Also fixed sound support (it needs ALSA).

svn path=/nixpkgs/trunk/; revision=7794
This commit is contained in:
Eelco Dolstra 2007-01-24 18:01:00 +00:00
parent 1e38eaa5cb
commit f752af2637
3 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@ installCommand=myInstall
myInstall() {
mkdir -p $out/lib/mozilla/plugins
cp -p libflashplayer.so $out/lib/mozilla/plugins
echo "$zlib/lib" > $out/lib/mozilla/plugins/extra-library-path
echo "$zlib/lib:$alsaLib/lib" > $out/lib/mozilla/plugins/extra-library-path
}
genericBuild

View File

@ -1,13 +1,13 @@
{stdenv, fetchurl, zlib}:
{stdenv, fetchurl, zlib, alsaLib}:
(stdenv.mkDerivation {
name = "flashplayer-9.0.21.78-pre-beta-112006";
name = "flashplayer-9.0.31.0";
builder = ./builder.sh;
src = fetchurl {
url = http://download.macromedia.com/pub/labs/flashplayer9_update/FP9_plugin_beta_112006.tar.gz;
md5 = "3ab408f85ae6d8180cc913edf97bf3eb";
url = http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz;
sha256 = "0y69n2i8b0zrb5dswhsvb6gls30p42p869vvyvpsg3prwwdrf6z3";
};
inherit zlib;
inherit zlib alsaLib;
}) // {mozillaPlugin = "/lib/mozilla/plugins";}

View File

@ -2550,7 +2550,7 @@ rec {
};
flashplayer9beta = import ../applications/networking/browsers/mozilla-plugins/flashplayer-9-beta {
inherit fetchurl stdenv zlib;
inherit fetchurl stdenv zlib alsaLib;
# inherit (xlibs) libXmu;
};