* Enable the Java applet plugin (through Blackdown) in Firefox.
svn path=/nixpkgs/trunk/; revision=1567
This commit is contained in:
parent
8b01d4ef0a
commit
4fbb44e598
2 changed files with 10 additions and 7 deletions
|
@ -1,17 +1,20 @@
|
|||
. $stdenv/setup
|
||||
|
||||
shopt -s nullglob
|
||||
|
||||
mkdir -p $out/bin
|
||||
|
||||
pluginPath=
|
||||
extraLibPath=
|
||||
for i in $plugins; do
|
||||
p=$i/lib/mozilla/plugins
|
||||
if test -e $p; then
|
||||
pluginPath=$pluginPath${pluginPath:+:}$p
|
||||
if test -e $p/extra-library-path; then
|
||||
extraLibPath=$extraLibPath${extraLibPath:+:}$(cat $p/extra-library-path)
|
||||
for p in $i/lib/mozilla/plugins $i/jre/plugin/*/mozilla; do
|
||||
if test -e $p; then
|
||||
pluginPath=$pluginPath${pluginPath:+:}$p
|
||||
if test -e $p/extra-library-path; then
|
||||
extraLibPath=$extraLibPath${extraLibPath:+:}$(cat $p/extra-library-path)
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
cat > $out/bin/firefox <<EOF
|
||||
|
|
|
@ -798,7 +798,7 @@ rec {
|
|||
|
||||
firefoxWrapper = (import ../applications/networking/browsers/firefox-wrapper) {
|
||||
inherit stdenv firefox;
|
||||
plugins = [MPlayerPlugin flashplayer];
|
||||
plugins = [MPlayerPlugin flashplayer blackdown];
|
||||
};
|
||||
|
||||
flashplayer = (import ../applications/networking/browsers/mozilla-plugins/flashplayer) {
|
||||
|
|
Loading…
Reference in a new issue