mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
f6fd7e36d3
https://www.mozilla.org/en-US/firefox/91.9.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2022-17/ Fixes: CVE-2022-29914, CVE-2022-29909, CVE-2022-29916, CVE-2022-29911, CVE-2022-29912, CVE-2022-29917
84 lines
3.2 KiB
Nix
84 lines
3.2 KiB
Nix
{ stdenv, lib, callPackage, fetchurl, fetchpatch, nixosTests }:
|
|
|
|
let
|
|
common = opts: callPackage (import ./common.nix opts) {};
|
|
in
|
|
|
|
rec {
|
|
firefox = common rec {
|
|
pname = "firefox";
|
|
version = "100.0";
|
|
src = fetchurl {
|
|
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
|
sha512 = "29c56391c980209ff94c02a9aba18fe27bea188bdcbcf7fe0c0f27f61e823f4507a3ec343b27cb5285cf3901843e9cc4aca8e568beb623c4b69b7282e662b2aa";
|
|
};
|
|
|
|
meta = {
|
|
description = "A web browser built from Firefox source tree";
|
|
homepage = "http://www.mozilla.com/en-US/firefox/";
|
|
maintainers = with lib.maintainers; [ lovesegfault hexa ];
|
|
platforms = lib.platforms.unix;
|
|
badPlatforms = lib.platforms.darwin;
|
|
broken = stdenv.buildPlatform.is32bit; # since Firefox 60, build on 32-bit platforms fails with "out of memory".
|
|
# not in `badPlatforms` because cross-compilation on 64-bit machine might work.
|
|
maxSilent = 14400; # 4h, double the default of 7200s (c.f. #129212, #129115)
|
|
license = lib.licenses.mpl20;
|
|
};
|
|
tests = [ nixosTests.firefox ];
|
|
updateScript = callPackage ./update.nix {
|
|
attrPath = "firefox-unwrapped";
|
|
};
|
|
};
|
|
|
|
firefox-esr-91 = common rec {
|
|
pname = "firefox-esr";
|
|
version = "91.9.0esr";
|
|
src = fetchurl {
|
|
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
|
sha512 = "fd69d489429052013d2c1b8b766a47920ecee62f0688505758f593b27ae66d6343b9107163749406251aedebdf836147e4d562415a811b04d7ab2ae31e32f133";
|
|
};
|
|
|
|
meta = {
|
|
description = "A web browser built from Firefox Extended Support Release source tree";
|
|
homepage = "http://www.mozilla.com/en-US/firefox/";
|
|
maintainers = with lib.maintainers; [ hexa ];
|
|
platforms = lib.platforms.unix;
|
|
badPlatforms = lib.platforms.darwin;
|
|
broken = stdenv.buildPlatform.is32bit; # since Firefox 60, build on 32-bit platforms fails with "out of memory".
|
|
# not in `badPlatforms` because cross-compilation on 64-bit machine might work.
|
|
license = lib.licenses.mpl20;
|
|
};
|
|
tests = [ nixosTests.firefox-esr-91 ];
|
|
updateScript = callPackage ./update.nix {
|
|
attrPath = "firefox-esr-91-unwrapped";
|
|
versionSuffix = "esr";
|
|
};
|
|
};
|
|
|
|
librewolf =
|
|
let
|
|
librewolf-src = callPackage ./librewolf { };
|
|
in
|
|
(common rec {
|
|
pname = "librewolf";
|
|
binaryName = "librewolf";
|
|
version = librewolf-src.packageVersion;
|
|
src = librewolf-src.firefox;
|
|
inherit (librewolf-src) extraConfigureFlags extraPostPatch extraPassthru;
|
|
|
|
meta = {
|
|
description = "A fork of Firefox, focused on privacy, security and freedom";
|
|
homepage = "https://librewolf.net/";
|
|
maintainers = with lib.maintainers; [ squalus ];
|
|
inherit (firefox.meta) platforms badPlatforms broken maxSilent license;
|
|
};
|
|
updateScript = callPackage ./librewolf/update.nix {
|
|
attrPath = "librewolf-unwrapped";
|
|
};
|
|
}).override {
|
|
crashreporterSupport = false;
|
|
enableOfficialBranding = false;
|
|
pgoSupport = false; # Profiling gets stuck and doesn't terminate.
|
|
};
|
|
}
|