2020-12-31 02:47:54 +00:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, fetchpatch, nixosTests }:
|
2017-03-27 13:33:00 +01:00
|
|
|
|
2018-03-06 22:33:11 +00:00
|
|
|
let
|
2018-10-01 01:00:00 +01:00
|
|
|
common = opts: callPackage (import ./common.nix opts) {};
|
2018-03-06 22:33:11 +00:00
|
|
|
in
|
2017-03-27 13:33:00 +01:00
|
|
|
|
|
|
|
rec {
|
|
|
|
firefox = common rec {
|
|
|
|
pname = "firefox";
|
2021-12-08 10:09:09 +00:00
|
|
|
version = "95.0";
|
2018-05-11 01:09:36 +01:00
|
|
|
src = fetchurl {
|
2021-07-13 18:04:57 +01:00
|
|
|
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
2021-12-08 10:09:09 +00:00
|
|
|
sha512 = "350672a2cd99195c67dafc0e71c6eaf1e23e85a5fe92775697119a054f17c34a736035e23d7f2bb404b544f0f144efef3843cfc293596a6e61d1ea36efc3a724";
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A web browser built from Firefox source tree";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.mozilla.com/en-US/firefox/";
|
2021-03-22 15:09:57 +00:00
|
|
|
maintainers = with lib.maintainers; [ eelco lovesegfault hexa ];
|
2018-07-10 23:10:04 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2019-09-21 04:20:32 +01: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 22:11:50 +01:00
|
|
|
maxSilent = 14400; # 4h, double the default of 7200s (c.f. #129212, #129115)
|
2018-08-06 15:13:50 +01:00
|
|
|
license = lib.licenses.mpl20;
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
2020-12-31 02:47:54 +00:00
|
|
|
tests = [ nixosTests.firefox ];
|
2017-03-27 13:33:00 +01:00
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-unwrapped";
|
|
|
|
};
|
2018-10-01 01:00:00 +01:00
|
|
|
};
|
2017-03-27 13:33:00 +01:00
|
|
|
|
2021-08-09 10:57:57 +01:00
|
|
|
firefox-esr-91 = common rec {
|
|
|
|
pname = "firefox-esr";
|
2021-12-08 07:04:55 +00:00
|
|
|
version = "91.4.0esr";
|
2021-08-09 10:57:57 +01:00
|
|
|
src = fetchurl {
|
2021-07-13 18:04:57 +01:00
|
|
|
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
2021-12-08 07:04:55 +00:00
|
|
|
sha512 = "781bf62a0e1215cad7d90de7c822978997bfeaf71bde4e7124a732921d130762c6654417c708a299726039d1603ff5e0796106118ad4b2ddef4e9dac84887765";
|
2021-08-09 10:57:57 +01: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-91 ];
|
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-esr-91-unwrapped";
|
|
|
|
versionSuffix = "esr";
|
|
|
|
};
|
|
|
|
};
|
2020-02-01 16:37:56 +00:00
|
|
|
}
|