2020-11-30 09:26:45 +00:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, fetchpatch }:
|
2017-03-27 12:33:00 +00:00
|
|
|
|
2018-03-06 22:33:11 +00:00
|
|
|
let
|
2018-10-01 00:00:00 +00:00
|
|
|
common = opts: callPackage (import ./common.nix opts) {};
|
2018-03-06 22:33:11 +00:00
|
|
|
in
|
2017-03-27 12:33:00 +00:00
|
|
|
|
|
|
|
rec {
|
|
|
|
firefox = common rec {
|
|
|
|
pname = "firefox";
|
2021-01-28 02:22:20 +00:00
|
|
|
ffversion = "85.0";
|
2018-05-11 00:09:36 +00:00
|
|
|
src = fetchurl {
|
2018-10-01 00:00:00 +00:00
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2021-01-28 02:22:20 +00:00
|
|
|
sha512 = "17bx4782ix3nrjnc6y29bz86lkpc2fzapqraa67xi65m46qrn0cs9hwdjyl48rdc44j5972gilpmd217kfxf4wxrfc2vcxadgk75158";
|
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/";
|
2020-12-06 20:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ eelco ];
|
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.
|
2018-08-06 14:13:50 +00:00
|
|
|
license = lib.licenses.mpl20;
|
2017-03-27 12:33:00 +00:00
|
|
|
};
|
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-unwrapped";
|
2018-11-16 14:04:54 +00:00
|
|
|
versionKey = "ffversion";
|
2017-03-27 12:33:00 +00:00
|
|
|
};
|
2018-10-01 00:00:00 +00:00
|
|
|
};
|
2017-03-27 12:33:00 +00:00
|
|
|
|
2020-07-27 12:14:14 +00:00
|
|
|
firefox-esr-78 = common rec {
|
|
|
|
pname = "firefox-esr";
|
2021-01-28 03:07:18 +00:00
|
|
|
ffversion = "78.7.0esr";
|
2020-07-27 12:14:14 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2021-01-28 03:07:18 +00:00
|
|
|
sha512 = "0606prndxfv9nvrpcnagwky04j4jhn1139gr72a0rydfagznsaqwy13gpzdf58ifycdln63052kchlh2dslz5m8hifp215ydcppv8xg";
|
2020-07-27 12:14:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A web browser built from Firefox Extended Support Release source tree";
|
|
|
|
homepage = "http://www.mozilla.com/en-US/firefox/";
|
2020-12-06 20:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ eelco ];
|
2020-07-27 12:14:14 +00:00
|
|
|
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
|
|
|
}
|