2020-07-12 18:43:49 +01:00
|
|
|
{ config, stdenv, lib, callPackage, fetchurl, nss_3_44 }:
|
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";
|
2020-10-20 14:56:14 +01:00
|
|
|
ffversion = "82.0";
|
2018-05-11 01:09:36 +01:00
|
|
|
src = fetchurl {
|
2018-10-01 01:00:00 +01:00
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2020-10-20 14:56:14 +01:00
|
|
|
sha512 = "3lbvlb6yggd5v0pkr0x6j350jc5dpclqz7bv4i06r97a5ijdgfc7c6y605966hvw24v17byxr120xc7a39ikl1wnls7a9gyzyqcwyw8";
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
|
|
|
|
2019-01-31 16:38:01 +00:00
|
|
|
patches = [
|
2020-05-04 15:31:27 +01:00
|
|
|
./no-buildconfig-ffx76.patch
|
2018-06-29 19:55:43 +01:00
|
|
|
];
|
|
|
|
|
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/";
|
2019-02-14 10:27:14 +00:00
|
|
|
maintainers = with lib.maintainers; [ eelco andir ];
|
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.
|
2018-08-06 15:13:50 +01:00
|
|
|
license = lib.licenses.mpl20;
|
2020-08-31 14:07:19 +01:00
|
|
|
timeout = 28800; # eight hours
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-unwrapped";
|
2018-11-16 14:04:54 +00:00
|
|
|
versionKey = "ffversion";
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
2018-10-01 01:00:00 +01:00
|
|
|
};
|
2017-03-27 13:33:00 +01:00
|
|
|
|
2020-07-27 13:14:14 +01:00
|
|
|
firefox-esr-78 = common rec {
|
|
|
|
pname = "firefox-esr";
|
2020-10-20 15:01:40 +01:00
|
|
|
ffversion = "78.4.0esr";
|
2020-07-27 13:14:14 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2020-10-20 15:01:40 +01:00
|
|
|
sha512 = "13640ssp1nq9dsfv8jqfw2paqk3wzwc4r47mvbhb4l9h990gzzb2chhlcjq066b7r3q9s0nq3iyk847vzi7z1yvhrhsnzfgk9g9gpnr";
|
2020-07-27 13:14:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./no-buildconfig-ffx76.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
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; [ eelco andir ];
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-esr-78-unwrapped";
|
|
|
|
versionKey = "ffversion";
|
|
|
|
};
|
|
|
|
};
|
2020-02-01 16:37:56 +00:00
|
|
|
}
|