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

208 lines
4.6 KiB
Nix
Raw Normal View History

2018-02-23 04:11:30 +00:00
{ lib, stdenv, fetchurl, config, wrapGAppsHook
, alsa-lib
, atk
, cairo
, curl
, cups
, dbus-glib
, dbus
, fontconfig
, freetype
2019-05-22 11:03:39 +00:00
, gdk-pixbuf
, glib
, glibc
2016-05-04 00:29:45 +00:00
, gtk2
, gtk3
2021-03-14 16:11:48 +00:00
, libkrb5
, libX11
, libXScrnSaver
, libxcb
2014-10-12 13:57:43 +00:00
, libXcomposite
, libXcursor
2014-10-12 13:57:43 +00:00
, libXdamage
, libXext
2014-10-12 13:57:43 +00:00
, libXfixes
, libXi
, libXinerama
, libXrender
, libXt
, libcanberra
2018-05-06 23:17:16 +00:00
, libnotify
, gnome
2019-11-10 16:44:34 +00:00
, libGLU, libGL
, nspr
, nss
, pango
, pipewire
2021-03-14 06:09:09 +00:00
, pciutils
, libheimdal
, libpulseaudio
, systemd
, channel
, generated
2016-12-01 17:58:16 +00:00
, writeScript
, writeText
2016-12-01 17:58:16 +00:00
, xidel
, coreutils
, gnused
, gnugrep
, gnupg
2020-08-10 20:19:23 +00:00
, ffmpeg
, runtimeShell
, mesa # firefox wants gbm for drm+dmabuf
, systemLocale ? config.i18n.defaultLocale or "en-US"
}:
2014-10-12 13:57:43 +00:00
let
inherit (generated) version sources;
mozillaPlatforms = {
2019-08-13 21:52:01 +00:00
i686-linux = "linux-i686";
x86_64-linux = "linux-x86_64";
};
arch = mozillaPlatforms.${stdenv.hostPlatform.system};
isPrefixOf = prefix: string:
builtins.substring 0 (builtins.stringLength prefix) string == prefix;
sourceMatches = locale: source:
(isPrefixOf source.locale locale) && source.arch == arch;
policies = {
DisableAppUpdate = true;
};
policiesJson = writeText "no-update-firefox-policy.json" (builtins.toJSON { inherit policies; });
2021-01-15 13:21:58 +00:00
defaultSource = lib.findFirst (sourceMatches "en-US") {} sources;
2021-01-15 13:21:58 +00:00
source = lib.findFirst (sourceMatches systemLocale) defaultSource sources;
pname = "firefox-${channel}-bin-unwrapped";
2016-12-01 17:58:16 +00:00
in
stdenv.mkDerivation {
inherit pname version;
src = fetchurl { inherit (source) url sha256; };
2021-01-15 13:21:58 +00:00
libPath = lib.makeLibraryPath
[ stdenv.cc.cc
alsa-lib
atk
cairo
curl
cups
dbus-glib
dbus
fontconfig
freetype
2019-05-22 11:03:39 +00:00
gdk-pixbuf
glib
glibc
2016-05-04 00:29:45 +00:00
gtk2
gtk3
2021-03-14 16:11:48 +00:00
libkrb5
mesa
libX11
libXScrnSaver
2014-10-12 13:57:43 +00:00
libXcomposite
libXcursor
libxcb
2014-10-12 13:57:43 +00:00
libXdamage
libXext
2014-10-12 13:57:43 +00:00
libXfixes
libXi
libXinerama
libXrender
libXt
libcanberra
2018-05-06 23:17:16 +00:00
libnotify
2019-11-10 16:44:34 +00:00
libGLU libGL
nspr
nss
pango
pipewire
2021-03-14 06:09:09 +00:00
pciutils
libheimdal
2016-08-03 17:39:46 +00:00
libpulseaudio
systemd
2020-08-10 20:19:23 +00:00
ffmpeg
2021-01-15 13:21:58 +00:00
] + ":" + lib.makeSearchPathOutput "lib" "lib64" [
stdenv.cc.cc
];
inherit gtk3;
buildInputs = [ wrapGAppsHook gtk3 gnome.adwaita-icon-theme ];
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 = ''
# Don't download updates from Mozilla directly
echo 'pref("app.update.auto", "false");' >> 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")
# See: https://github.com/mozilla/policy-templates/blob/master/README.md
mkdir -p "$out/lib/firefox-bin-${version}/distribution";
ln -s ${policiesJson} "$out/lib/firefox-bin-${version}/distribution/policies.json";
'';
passthru.execdir = "/bin";
passthru.ffmpegSupport = true;
2017-09-27 13:30:29 +00:00
passthru.gssSupport = true;
2018-04-16 10:37:31 +00:00
# update with:
# $ nix-shell maintainers/scripts/update.nix --argstr package firefox-bin-unwrapped
passthru.updateScript = import ./update.nix {
inherit pname channel writeScript xidel coreutils gnused gnugrep gnupg curl runtimeShell;
baseUrl =
if channel == "devedition"
then "http://archive.mozilla.org/pub/devedition/releases/"
else "http://archive.mozilla.org/pub/firefox/releases/";
};
meta = with 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 = builtins.attrNames mozillaPlatforms;
timeout = 86400; # 24 hours (increased from the Hydra default of 10h, c.f. #129115)
maintainers = with maintainers; [ taku0 lovesegfault ];
};
}