2020-03-05 18:36:01 -08:00
|
|
|
{ config, stdenv, lib, callPackage, fetchurl }:
|
2017-03-27 05:33:00 -07:00
|
|
|
|
2018-03-06 14:33:11 -08:00
|
|
|
let
|
2018-09-30 17:00:00 -07:00
|
|
|
common = opts: callPackage (import ./common.nix opts) {};
|
2018-03-06 14:33:11 -08:00
|
|
|
in
|
2017-03-27 05:33:00 -07:00
|
|
|
|
|
|
|
rec {
|
|
|
|
firefox = common rec {
|
|
|
|
pname = "firefox";
|
2020-05-14 03:50:34 -07:00
|
|
|
ffversion = "76.0.1";
|
2018-05-10 17:09:36 -07:00
|
|
|
src = fetchurl {
|
2018-09-30 17:00:00 -07:00
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2020-05-14 03:50:34 -07:00
|
|
|
sha512 = "0gnhfcgrz6022xf3vqia3s3639xa5pjp13h343d3c09mn8r919cmm6s38vzj1v3734fm25zb68acyarsp72xqq8z1420rh02b2pv38q";
|
2017-03-27 05:33:00 -07:00
|
|
|
};
|
|
|
|
|
2019-01-31 08:38:01 -08:00
|
|
|
patches = [
|
2020-05-04 07:31:27 -07:00
|
|
|
./no-buildconfig-ffx76.patch
|
2018-06-29 11:55:43 -07:00
|
|
|
];
|
|
|
|
|
2017-03-27 05:33:00 -07:00
|
|
|
meta = {
|
|
|
|
description = "A web browser built from Firefox source tree";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.mozilla.com/en-US/firefox/";
|
2019-02-14 02:27:14 -08:00
|
|
|
maintainers = with lib.maintainers; [ eelco andir ];
|
2018-07-10 15:10:04 -07:00
|
|
|
platforms = lib.platforms.unix;
|
2019-09-20 20:20:32 -07:00
|
|
|
badPlatforms = lib.platforms.darwin;
|
2020-03-05 18:36:01 -08: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 07:13:50 -07:00
|
|
|
license = lib.licenses.mpl20;
|
2017-03-27 05:33:00 -07:00
|
|
|
};
|
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-unwrapped";
|
2018-11-16 06:04:54 -08:00
|
|
|
versionKey = "ffversion";
|
2017-03-27 05:33:00 -07:00
|
|
|
};
|
2018-09-30 17:00:00 -07:00
|
|
|
};
|
2017-03-27 05:33:00 -07:00
|
|
|
|
2019-07-13 22:54:55 -07:00
|
|
|
firefox-esr-68 = common rec {
|
|
|
|
pname = "firefox-esr";
|
2020-05-04 08:29:37 -07:00
|
|
|
ffversion = "68.8.0esr";
|
2019-07-13 22:54:55 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2020-05-04 08:29:37 -07:00
|
|
|
sha512 = "2rl5irkamxi8caa8krj0wng93lb82kk9mf09mgci87mj9hy6fxzcrlmiiffp14s03rv0raagrn4w54pbx1336mylq6saxmfhpf676hk";
|
2019-07-13 22:54:55 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./no-buildconfig-ffx65.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = firefox.meta // {
|
|
|
|
description = "A web browser built from Firefox Extended Support Release source tree";
|
|
|
|
};
|
|
|
|
updateScript = callPackage ./update.nix {
|
|
|
|
attrPath = "firefox-esr-68-unwrapped";
|
|
|
|
versionSuffix = "esr";
|
|
|
|
versionKey = "ffversion";
|
|
|
|
};
|
|
|
|
};
|
2020-02-06 15:03:09 -08:00
|
|
|
} // lib.optionalAttrs (config.allowAliases or true) {
|
2020-02-04 14:08:51 -08:00
|
|
|
#### ALIASES
|
|
|
|
#### remove after 20.03 branchoff
|
|
|
|
|
2020-02-01 08:40:32 -08:00
|
|
|
firefox-esr-52 = throw ''
|
|
|
|
firefoxPackages.firefox-esr-52 was removed as it's an unsupported ESR with
|
|
|
|
open security issues. If you need it because you need to run some plugins
|
|
|
|
not having been ported to WebExtensions API, import it from an older
|
|
|
|
nixpkgs checkout still containing it.
|
|
|
|
'';
|
2020-02-01 08:30:54 -08:00
|
|
|
firefox-esr-60 = throw "firefoxPackages.firefox-esr-60 was removed as it's an unsupported ESR with open security issues.";
|
|
|
|
|
2020-02-01 08:37:56 -08:00
|
|
|
icecat = throw "firefoxPackages.icecat was removed as even its latest upstream version is based on an unsupported ESR release with open security issues.";
|
|
|
|
icecat-52 = throw "firefoxPackages.icecat was removed as even its latest upstream version is based on an unsupported ESR release with open security issues.";
|
|
|
|
|
2020-01-10 09:08:28 -08:00
|
|
|
tor-browser-7-5 = throw "firefoxPackages.tor-browser-7-5 was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead. See #77452.";
|
|
|
|
tor-browser-8-5 = throw "firefoxPackages.tor-browser-8-5 was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead. See #77452.";
|
|
|
|
tor-browser = throw "firefoxPackages.tor-browser was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead. See #77452.";
|
2017-08-14 17:00:00 -07:00
|
|
|
|
2020-02-01 08:37:56 -08:00
|
|
|
}
|