* Wrapped Firefox: make it evaluate on x86_64-linux.

svn path=/nixpkgs/trunk/; revision=8707
This commit is contained in:
Eelco Dolstra 2007-05-16 14:34:27 +00:00
parent d4f3016e10
commit ffa7b32970
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,7 @@
{stdenv, fetchurl, zlib, alsaLib}: {stdenv, fetchurl, zlib, alsaLib}:
assert stdenv.system == "i686-linux";
(stdenv.mkDerivation { (stdenv.mkDerivation {
name = "flashplayer-9.0.31.0"; name = "flashplayer-9.0.31.0";

View File

@ -165,6 +165,8 @@ rec {
lowPrio = drv: drv // { lowPrio = drv: drv // {
meta = (if drv ? meta then drv.meta else {}) // {priority = "10";}; meta = (if drv ? meta then drv.meta else {}) // {priority = "10";};
}; };
optional = cond: elem: if cond then [elem] else [];
### STANDARD ENVIRONMENT ### STANDARD ENVIRONMENT
@ -2959,11 +2961,11 @@ rec {
inherit stdenv firefox; inherit stdenv firefox;
plugins = [ plugins = [
MPlayerPlugin MPlayerPlugin
flashplayer
] ]
++ optional (system == "i686-linux") flashplayer
# RealPlayer is disabled by default for legal reasons. # RealPlayer is disabled by default for legal reasons.
++ (if getConfig ["firefox" "enableRealPlayer"] false then [RealPlayer] else []) ++ optional (system != "i686-linux" && getConfig ["firefox" "enableRealPlayer"] false) RealPlayer
++ (if supportsJDK then [jrePlugin] else []); ++ optional (supportsJDK && jrePlugin ? mozillaPlugin) jrePlugin;
}; };
xara = import ../applications/graphics/xara { xara = import ../applications/graphics/xara {