* 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}:
assert stdenv.system == "i686-linux";
(stdenv.mkDerivation {
name = "flashplayer-9.0.31.0";

View file

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