nixpkgs/pkgs/applications/networking/browsers/firefox-bin/default.nix

189 lines
4 KiB
Nix
Raw Normal View History

2017-04-23 13:34:24 +00:00
{ stdenv, fetchurl, config, wrapGAppsHook
, alsaLib
, atk
, cairo
, curl
, cups
, dbus_glib
, dbus_libs
, fontconfig
, freetype
, gconf
, gdk_pixbuf
, glib
, glibc
, gst-plugins-base
, gstreamer
2016-05-04 00:29:45 +00:00
, gtk2
, gtk3
, libX11
, libXScrnSaver
, libxcb
2014-10-12 13:57:43 +00:00
, libXcomposite
, libXdamage
, libXext
2014-10-12 13:57:43 +00:00
, libXfixes
, libXinerama
, libXrender
, libXt
, libcanberra_gtk2
, libgnome
, libgnomeui
2016-05-04 00:29:45 +00:00
, defaultIconTheme
, mesa
, nspr
, nss
, pango
, libheimdal
, libpulseaudio
, systemd
, channel
, generated
2016-12-01 17:58:16 +00:00
, writeScript
, xidel
, coreutils
, gnused
, gnugrep
, gnupg
}:
2014-08-24 16:52:34 +00:00
assert stdenv.isLinux;
2014-10-12 13:57:43 +00:00
let
inherit (generated) version sources;
arch = if stdenv.system == "i686-linux"
then "linux-i686"
else "linux-x86_64";
isPrefixOf = prefix: string:
builtins.substring 0 (builtins.stringLength prefix) string == prefix;
sourceMatches = locale: source:
(isPrefixOf source.locale locale) && source.arch == arch;
systemLocale = config.i18n.defaultLocale or "en-US";
defaultSource = stdenv.lib.findFirst (sourceMatches "en-US") {} sources;
source = stdenv.lib.findFirst (sourceMatches systemLocale) defaultSource sources;
name = "firefox-${channel}-bin-unwrapped-${version}";
2016-12-01 17:58:16 +00:00
in
stdenv.mkDerivation {
2016-12-01 17:58:16 +00:00
inherit name;
src = fetchurl { inherit (source) url sha512; };
2017-04-23 13:34:24 +00:00
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
libPath = stdenv.lib.makeLibraryPath
[ stdenv.cc.cc
alsaLib
2017-04-10 21:33:22 +00:00
alsaLib.dev
atk
cairo
curl
cups
dbus_glib
dbus_libs
fontconfig
freetype
gconf
gdk_pixbuf
glib
glibc
gst-plugins-base
gstreamer
2016-05-04 00:29:45 +00:00
gtk2
gtk3
libX11
libXScrnSaver
2014-10-12 13:57:43 +00:00
libXcomposite
libxcb
2014-10-12 13:57:43 +00:00
libXdamage
libXext
2014-10-12 13:57:43 +00:00
libXfixes
libXinerama
libXrender
libXt
libcanberra_gtk2
libgnome
libgnomeui
mesa
nspr
nss
pango
libheimdal
2016-08-03 17:39:46 +00:00
libpulseaudio
libpulseaudio.dev
systemd
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
stdenv.cc.cc
];
inherit gtk3;
2017-04-23 13:34:24 +00:00
buildInputs = [ wrapGAppsHook gtk3 defaultIconTheme ];
2016-05-04 00:29:45 +00:00
# "strip" after "patchelf" may break binaries.
# See: https://github.com/NixOS/patchelf/issues/10
2017-04-23 13:34:24 +00:00
dontStrip = true;
dontPatchELF = true;
patchPhase = ''
sed -i -e '/^pref("app.update.channel",/d' defaults/pref/channel-prefs.js
echo 'pref("app.update.channel", "non-existing-channel")' >> defaults/pref/channel-prefs.js
'';
installPhase =
''
mkdir -p "$prefix/usr/lib/firefox-bin-${version}"
cp -r * "$prefix/usr/lib/firefox-bin-${version}"
mkdir -p "$out/bin"
ln -s "$prefix/usr/lib/firefox-bin-${version}/firefox" "$out/bin/"
for executable in \
firefox firefox-bin plugin-container \
updater crashreporter webapprt-stub
do
if [ -e "$out/usr/lib/firefox-bin-${version}/$executable" ]; then
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
"$out/usr/lib/firefox-bin-${version}/$executable"
fi
done
find . -executable -type f -exec \
patchelf --set-rpath "$libPath" \
"$out/usr/lib/firefox-bin-${version}/{}" \;
2016-05-08 08:06:08 +00:00
# wrapFirefox expects "$out/lib" instead of "$out/usr/lib"
ln -s "$out/usr/lib" "$out/lib"
2017-04-23 13:34:24 +00:00
gappsWrapperArgs+=(--argv0 "$out/bin/.firefox-wrapped")
'';
passthru.ffmpegSupport = true;
passthru.updateScript = import ./update.nix {
inherit name channel writeScript xidel coreutils gnused gnugrep gnupg curl;
baseUrl =
if channel == "devedition"
then "http://archive.mozilla.org/pub/devedition/releases/"
else "http://archive.mozilla.org/pub/firefox/releases/";
};
meta = with stdenv.lib; {
2014-11-25 15:28:55 +00:00
description = "Mozilla Firefox, free web browser (binary package)";
homepage = http://www.mozilla.org/firefox/;
license = {
2014-11-25 15:28:55 +00:00
free = false;
url = http://www.mozilla.org/en-US/foundation/trademarks/policy/;
};
platforms = platforms.linux;
2016-05-15 21:22:50 +00:00
maintainers = with maintainers; [ garbas ];
};
}