2022-05-10 07:10:21 +00:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, fetchpatch, nixosTests, buildMozillaMach }:
|
2017-03-27 12:33:00 +00:00
|
|
|
|
|
|
|
rec {
|
2022-05-10 07:10:21 +00:00
|
|
|
firefox = buildMozillaMach rec {
|
2017-03-27 12:33:00 +00:00
|
|
|
pname = "firefox";
|
2022-11-14 16:17:52 +00:00
|
|
|
version = "107.0";
|
2018-05-11 00:09:36 +00:00
|
|
|
src = fetchurl {
|
2021-07-13 17:04:57 +00:00
|
|
|
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
2022-11-14 16:17:52 +00:00
|
|
|
sha512 = "4b442631079a13e1d11223499b1d8daf622d9d84b38898f9084670ddcb5738b73e0d967a5050d5930bf862aa69e8d46ebf6d751ac6d0f075a1d75ff4738bdb6e";
|
2017-03-27 12:33:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A web browser built from Firefox source tree";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.mozilla.com/en-US/firefox/";
|
2022-03-07 19:28:23 +00:00
|
|
|
maintainers = with lib.maintainers; [ lovesegfault hexa ];
|
2018-07-10 22:10:04 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2019-09-21 03:20:32 +00:00
|
|
|
badPlatforms = lib.platforms.darwin;
|
2020-03-06 02:36:01 +00:00
|
|
|
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.
|
2021-07-04 21:11:50 +00:00
|
|
|
maxSilent = 14400; # 4h, double the default of 7200s (c.f. #129212, #129115)
|
2018-08-06 14:13:50 +00:00
|
|
|
license = lib.licenses.mpl20;
|
2017-03-27 12:33:00 +00:00
|
|
|
};
|
2020-12-31 02:47:54 +00:00
|
|
|
tests = [ nixosTests.firefox ];
|
2017-03-27 12:33:00 +00:00
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-unwrapped";
|
|
|
|
};
|
2018-10-01 00:00:00 +00:00
|
|
|
};
|
2017-03-27 12:33:00 +00:00
|
|
|
|
2022-06-27 10:29:15 +00:00
|
|
|
firefox-esr-102 = buildMozillaMach rec {
|
2022-08-06 09:35:48 +00:00
|
|
|
pname = "firefox-esr-102";
|
2022-10-17 11:25:36 +00:00
|
|
|
version = "102.4.0esr";
|
2022-06-27 10:29:15 +00:00
|
|
|
applicationName = "Mozilla Firefox ESR";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
2022-10-17 11:25:36 +00:00
|
|
|
sha512 = "30d9e6ef04fd86516e2cea3c797ec99af4c96b08576bb3409c0026da4fd1218167f89a007109e1fa4e2571f98f2dbe5ab58a26473533d45301f75b90ec3dbf28";
|
2022-06-27 10:29:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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-102 ];
|
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-esr-102-unwrapped";
|
2022-06-28 09:53:18 +00:00
|
|
|
versionPrefix = "102";
|
2022-06-27 10:29:15 +00:00
|
|
|
versionSuffix = "esr";
|
|
|
|
};
|
|
|
|
};
|
2020-02-01 16:37:56 +00:00
|
|
|
}
|