38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
|
|
{
|
||
|
|
stdenv,
|
||
|
|
lib,
|
||
|
|
callPackage,
|
||
|
|
fetchurl,
|
||
|
|
nixosTests,
|
||
|
|
buildMozillaMach,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildMozillaMach rec {
|
||
|
|
pname = "firefox";
|
||
|
|
version = "143.0.4";
|
||
|
|
src = fetchurl {
|
||
|
|
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
||
|
|
sha512 = "2bcbde4e72ea41e9ccc98836901635350b5dc7b50c618e19ab6103a27adc0f017ca3fa7555378c8af6ee1f3a14d02935289fe2b0d35d840d610f5ac07a88e4b6";
|
||
|
|
};
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
changelog = "https://www.mozilla.org/en-US/firefox/${version}/releasenotes/";
|
||
|
|
description = "Web browser built from Firefox source tree";
|
||
|
|
homepage = "http://www.mozilla.com/en-US/firefox/";
|
||
|
|
maintainers = with lib.maintainers; [ hexa ];
|
||
|
|
platforms = lib.platforms.unix;
|
||
|
|
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;
|
||
|
|
mainProgram = "firefox";
|
||
|
|
};
|
||
|
|
tests = {
|
||
|
|
inherit (nixosTests) firefox;
|
||
|
|
};
|
||
|
|
updateScript = callPackage ../update.nix {
|
||
|
|
attrPath = "firefox-unwrapped";
|
||
|
|
};
|
||
|
|
}
|