2010-05-18 16:58:45 +02:00
|
|
|
{ stdenv, browser, makeDesktopItem, makeWrapper, plugins
|
|
|
|
, browserName ? "firefox"
|
|
|
|
, desktopName ? "Firefox"
|
|
|
|
, nameSuffix ? ""
|
|
|
|
}:
|
2004-10-17 15:28:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-07-28 18:25:09 +02:00
|
|
|
name = browser.name + "-with-plugins";
|
2004-10-17 15:28:28 +02:00
|
|
|
|
2009-05-10 14:03:53 +02:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = browserName;
|
|
|
|
exec = browserName;
|
|
|
|
icon = "${browser}/lib/${browser.name}/icons/mozicon128.png";
|
|
|
|
comment = "";
|
2010-05-18 16:58:45 +02:00
|
|
|
desktopName = desktopName;
|
2009-05-10 14:03:53 +02:00
|
|
|
genericName = "Web Browser";
|
|
|
|
categories = "Application;Network;";
|
|
|
|
};
|
|
|
|
|
2008-06-14 23:42:07 +02:00
|
|
|
buildInputs = [makeWrapper];
|
2004-10-17 15:28:28 +02:00
|
|
|
|
2008-06-14 23:42:07 +02:00
|
|
|
buildCommand = ''
|
2008-07-28 18:25:09 +02:00
|
|
|
if [ ! -x "${browser}/bin/${browserName}" ]
|
|
|
|
then
|
|
|
|
echo "cannot find executable file \`${browser}/bin/${browserName}'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
makeWrapper "${browser}/bin/${browserName}" \
|
|
|
|
"$out/bin/${browserName}${nameSuffix}" \
|
2008-06-14 23:42:07 +02:00
|
|
|
--suffix-each MOZ_PLUGIN_PATH ':' "$plugins" \
|
2009-07-16 13:22:37 +02:00
|
|
|
--prefix-contents PATH ':' "$(filterExisting $(addSuffix /extra-bin-path $plugins))"
|
2009-05-10 14:03:53 +02:00
|
|
|
|
|
|
|
ensureDir $out/share/applications
|
|
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
2008-06-14 23:42:07 +02:00
|
|
|
'';
|
2007-11-24 11:49:52 +01:00
|
|
|
|
2005-02-16 12:24:40 +01:00
|
|
|
# Let each plugin tell us (through its `mozillaPlugin') attribute
|
|
|
|
# where to find the plugin in its tree.
|
2006-08-09 17:05:30 +02:00
|
|
|
plugins = map (x: x + x.mozillaPlugin) plugins;
|
2006-03-10 17:12:46 +01:00
|
|
|
|
|
|
|
meta = {
|
2006-10-12 12:53:16 +02:00
|
|
|
description =
|
2008-07-28 18:25:09 +02:00
|
|
|
browser.meta.description
|
2006-10-12 12:53:16 +02:00
|
|
|
+ " (with plugins: "
|
|
|
|
+ (let lib = import ../../../../lib;
|
|
|
|
in lib.concatStrings (lib.intersperse ", " (map (x: x.name) plugins)))
|
|
|
|
+ ")";
|
2006-03-10 17:12:46 +01:00
|
|
|
};
|
2004-10-17 15:28:28 +02:00
|
|
|
}
|