2020-02-06 23:03:09 +00:00
|
|
|
{ config, lib, callPackage, fetchurl, fetchFromGitHub, overrideCC, gccStdenv, gcc6 }:
|
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
|
|
|
|
2019-04-06 09:12:16 +01:00
|
|
|
# Needed on older branches since rustc: 1.32.0 -> 1.33.0
|
|
|
|
missing-documentation-patch = fetchurl {
|
|
|
|
name = "missing-documentation.patch";
|
|
|
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/deny_missing_docs.patch"
|
|
|
|
+ "?h=firefox-esr&id=03bdd01f9cf";
|
|
|
|
sha256 = "1i33n3fgwc8d0v7j4qn7lbdax0an6swar12gay3q2nwrhg3ic4fb";
|
|
|
|
};
|
2018-03-06 22:33:11 +00:00
|
|
|
in
|
2017-03-27 13:33:00 +01:00
|
|
|
|
|
|
|
rec {
|
|
|
|
firefox = common rec {
|
|
|
|
pname = "firefox";
|
2020-01-21 10:59:34 +00:00
|
|
|
ffversion = "72.0.2";
|
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-01-21 10:59:34 +00:00
|
|
|
sha512 = "13l23p2dqsf2cpdzaydqqq4kbxlc5jxggz9r2i49avn4q9bqx036zvsq512q1hk37bz2bwq8zdr0530s44zickinls150xq14kq732d";
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
|
|
|
|
2019-01-31 16:38:01 +00:00
|
|
|
patches = [
|
2019-01-23 00:07:33 +00:00
|
|
|
./no-buildconfig-ffx65.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";
|
|
|
|
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;
|
2018-08-06 15:13:50 +01:00
|
|
|
license = lib.licenses.mpl20;
|
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
|
|
|
|
2019-01-31 16:37:48 +00:00
|
|
|
# Do not remove. This is the last version of Firefox that supports
|
|
|
|
# the old plugins. While this package is unsafe to use for browsing
|
|
|
|
# the web, there are many old useful plugins targeting offline
|
|
|
|
# activities (e.g. ebook readers, syncronous translation, etc) that
|
|
|
|
# will probably never be ported to WebExtensions API.
|
2019-03-31 19:55:39 +01:00
|
|
|
firefox-esr-52 = (common rec {
|
2017-03-27 13:33:00 +01:00
|
|
|
pname = "firefox-esr";
|
2018-10-01 01:00:00 +01:00
|
|
|
ffversion = "52.9.0esr";
|
2017-03-27 13:33:00 +01:00
|
|
|
src = fetchurl {
|
2018-10-01 01:00:00 +01:00
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2018-06-29 19:55:43 +01:00
|
|
|
sha512 = "bfca42668ca78a12a9fb56368f4aae5334b1f7a71966fbba4c32b9c5e6597aac79a6e340ac3966779d2d5563eb47c054ab33cc40bfb7306172138ccbd3adb2b9";
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
|
|
|
|
2019-01-31 16:38:01 +00:00
|
|
|
patches = [
|
2018-06-29 19:55:43 +01:00
|
|
|
# this one is actually an omnipresent bug
|
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1444519
|
|
|
|
./fix-pa-context-connect-retval.patch
|
|
|
|
];
|
2017-11-12 20:18:31 +00:00
|
|
|
|
2017-03-27 13:33:00 +01:00
|
|
|
meta = firefox.meta // {
|
|
|
|
description = "A web browser built from Firefox Extended Support Release source tree";
|
2018-09-06 15:32:44 +01:00
|
|
|
knownVulnerabilities = [ "Support ended in August 2018." ];
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
2019-03-31 19:55:39 +01:00
|
|
|
}).override {
|
2019-04-01 07:36:02 +01:00
|
|
|
stdenv = overrideCC gccStdenv gcc6; # gcc7 fails with "undefined reference to `__divmoddi4'"
|
2019-03-31 19:55:39 +01:00
|
|
|
gtk3Support = false;
|
2018-10-01 01:00:00 +01:00
|
|
|
};
|
2017-03-27 13:33:00 +01:00
|
|
|
|
2019-07-14 06:54:55 +01:00
|
|
|
firefox-esr-68 = common rec {
|
|
|
|
pname = "firefox-esr";
|
2020-01-21 11:03:26 +00:00
|
|
|
ffversion = "68.4.2esr";
|
2019-07-14 06:54:55 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2020-01-21 11:03:26 +00:00
|
|
|
sha512 = "1n7ssx4w5b822bq8zcv6vsy5ph1xjyj9qh6zbnknym5bc0spzk19nrkrpl8a2m26z6xj2lgw1n19gjf4ab6jpfxv3cqq4qwmm0v2fz1";
|
2019-07-14 06:54:55 +01: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 23:03:09 +00:00
|
|
|
} // lib.optionalAttrs (config.allowAliases or true) {
|
|
|
|
# ALIASES
|
|
|
|
# remove after 20.03 branchoff
|
2020-02-01 16:30:54 +00:00
|
|
|
firefox-esr-60 = throw "firefoxPackages.firefox-esr-60 was removed as it's an unsupported ESR with open security issues.";
|
|
|
|
|
2020-02-01 16:37:56 +00: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 17:08:28 +00: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-15 01:00:00 +01:00
|
|
|
|
2020-02-01 16:37:56 +00:00
|
|
|
}
|