2014-12-05 12:59:02 +00:00
|
|
|
{ stdenv, lib, browser, makeDesktopItem, makeWrapper, plugins, gst_plugins, libs, gtk_modules
|
2014-12-12 18:33:23 +00:00
|
|
|
, browserName, desktopName, nameSuffix, icon, libtrick ? true
|
2010-05-18 15:58:45 +01:00
|
|
|
}:
|
2004-10-17 14:28:28 +01:00
|
|
|
|
2014-03-10 14:18:48 +00:00
|
|
|
let p = builtins.parseDrvName browser.name; in
|
|
|
|
|
2004-10-17 14:28:28 +01:00
|
|
|
stdenv.mkDerivation {
|
2014-03-10 14:18:48 +00:00
|
|
|
name = "${p.name}-with-plugins-${p.version}";
|
2004-10-17 14:28:28 +01:00
|
|
|
|
2009-05-10 13:03:53 +01:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = browserName;
|
2012-03-20 23:23:00 +00:00
|
|
|
exec = browserName + " %U";
|
2015-02-13 19:12:17 +00:00
|
|
|
icon = browserName;
|
2009-05-10 13:03:53 +01:00
|
|
|
comment = "";
|
2010-05-18 15:58:45 +01:00
|
|
|
desktopName = desktopName;
|
2009-05-10 13:03:53 +01:00
|
|
|
genericName = "Web Browser";
|
2012-03-20 23:23:00 +00:00
|
|
|
categories = "Application;Network;WebBrowser;";
|
2015-01-25 20:35:22 +00:00
|
|
|
mimeType = stdenv.lib.concatStringsSep ";" [
|
|
|
|
"text/html"
|
|
|
|
"text/xml"
|
|
|
|
"application/xhtml+xml"
|
2015-02-13 15:12:59 +00:00
|
|
|
"application/vnd.mozilla.xul+xml"
|
2015-01-25 20:35:22 +00:00
|
|
|
"x-scheme-handler/http"
|
|
|
|
"x-scheme-handler/https"
|
|
|
|
"x-scheme-handler/ftp"
|
|
|
|
];
|
2009-05-10 13:03:53 +01:00
|
|
|
};
|
|
|
|
|
2014-12-05 19:13:41 +00:00
|
|
|
buildInputs = [makeWrapper] ++ gst_plugins;
|
2004-10-17 14:28:28 +01:00
|
|
|
|
2008-06-14 22:42:07 +01:00
|
|
|
buildCommand = ''
|
2008-07-28 17:25:09 +01: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 22:42:07 +01:00
|
|
|
--suffix-each MOZ_PLUGIN_PATH ':' "$plugins" \
|
2011-12-12 17:25:51 +00:00
|
|
|
--suffix-each LD_LIBRARY_PATH ':' "$libs" \
|
2013-05-10 01:44:03 +01:00
|
|
|
--suffix-each GTK_PATH ':' "$gtk_modules" \
|
2012-04-01 16:32:48 +01:00
|
|
|
--suffix-each LD_PRELOAD ':' "$(cat $(filterExisting $(addSuffix /extra-ld-preload $plugins)))" \
|
2014-12-05 19:13:41 +00:00
|
|
|
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \
|
2014-12-12 18:33:23 +00:00
|
|
|
--prefix-contents PATH ':' "$(filterExisting $(addSuffix /extra-bin-path $plugins))" \
|
|
|
|
--set MOZ_OBJDIR "$(ls -d "${browser}/lib/${browserName}*")"
|
|
|
|
|
|
|
|
${ lib.optionalString libtrick
|
|
|
|
''
|
|
|
|
sed -e "s@exec @exec -a '$out/bin/${browserName}${nameSuffix}' @" -i "$out/bin/${browserName}${nameSuffix}"
|
|
|
|
libdirname="$(echo "${browser}/lib/${browserName}"*)"
|
|
|
|
libdirbasename="$(basename "$libdirname")"
|
|
|
|
mkdir -p "$out/lib/$libdirbasename"
|
|
|
|
ln -s "$libdirname"/* "$out/lib/$libdirbasename"
|
|
|
|
script_location="$(mktemp "$out/lib/$libdirbasename/${browserName}${nameSuffix}.XXXXXX")"
|
|
|
|
mv "$out/bin/${browserName}${nameSuffix}" "$script_location"
|
|
|
|
ln -s "$script_location" "$out/bin/${browserName}${nameSuffix}"
|
|
|
|
''
|
|
|
|
}
|
2009-05-10 13:03:53 +01:00
|
|
|
|
2015-02-13 15:12:59 +00:00
|
|
|
mkdir -p $out/share/icons
|
2015-02-13 17:07:01 +00:00
|
|
|
ln -s $out/lib/${browserName}/browser/icons/mozicon128.png $out/share/icons/${browserName}.png
|
2015-02-13 15:12:59 +00:00
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/applications
|
2009-05-10 13:03:53 +01:00
|
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
2012-03-25 21:21:45 +01:00
|
|
|
|
|
|
|
# For manpages, in case the program supplies them
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo ${browser} > $out/nix-support/propagated-user-env-packages
|
2008-06-14 22:42:07 +01:00
|
|
|
'';
|
2007-11-24 10:49:52 +00:00
|
|
|
|
2014-02-10 20:03:17 +00:00
|
|
|
preferLocalBuild = true;
|
|
|
|
|
2005-02-16 11:24:40 +00:00
|
|
|
# Let each plugin tell us (through its `mozillaPlugin') attribute
|
|
|
|
# where to find the plugin in its tree.
|
2006-08-09 16:05:30 +01:00
|
|
|
plugins = map (x: x + x.mozillaPlugin) plugins;
|
2011-12-12 17:25:51 +00:00
|
|
|
libs = map (x: x + "/lib") libs ++ map (x: x + "/lib64") libs;
|
2013-05-10 01:44:03 +01:00
|
|
|
gtk_modules = map (x: x + x.gtkModule) gtk_modules;
|
2006-03-10 16:12:46 +00:00
|
|
|
|
|
|
|
meta = {
|
2006-10-12 11:53:16 +01:00
|
|
|
description =
|
2008-07-28 17:25:09 +01:00
|
|
|
browser.meta.description
|
2006-10-12 11:53:16 +01:00
|
|
|
+ " (with plugins: "
|
2013-09-30 21:43:34 +01:00
|
|
|
+ lib.concatStrings (lib.intersperse ", " (map (x: x.name) plugins))
|
2006-10-12 11:53:16 +01:00
|
|
|
+ ")";
|
2006-03-10 16:12:46 +00:00
|
|
|
};
|
2004-10-17 14:28:28 +01:00
|
|
|
}
|