2018-07-21 01:44:44 +01:00
|
|
|
{ lib, callPackage, stdenv, fetchurl, fetchFromGitHub, fetchpatch, python3 }:
|
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
|
|
|
|
|
|
|
nixpkgsPatches = [
|
|
|
|
./env_var_for_system_dir.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
in
|
2017-03-27 13:33:00 +01:00
|
|
|
|
|
|
|
rec {
|
|
|
|
|
|
|
|
firefox = common rec {
|
|
|
|
pname = "firefox";
|
2019-01-23 00:07:33 +00:00
|
|
|
ffversion = "65.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";
|
2019-01-23 00:07:33 +00:00
|
|
|
sha512 = "39bx76whgf53rkfqqy8gfhd44wikh89zpnqr930v4grqg3v0pfr8mbvp7xzjjlf5r7bski0wxibn9vyyy273fp99zyj1w2m5ihh9aqh";
|
2017-03-27 13:33:00 +01:00
|
|
|
};
|
|
|
|
|
2018-03-06 22:33:11 +00:00
|
|
|
patches = nixpkgsPatches ++ [
|
2019-01-23 00:07:33 +00:00
|
|
|
./no-buildconfig-ffx65.patch
|
2018-06-29 19:55:43 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
extraNativeBuildInputs = [ python3 ];
|
2017-08-11 20:06:48 +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/;
|
|
|
|
maintainers = with lib.maintainers; [ eelco ];
|
2018-07-10 23:10:04 +01:00
|
|
|
platforms = lib.platforms.unix;
|
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.
|
2018-05-11 01:10:15 +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
|
|
|
};
|
|
|
|
|
2018-06-29 19:55:43 +01:00
|
|
|
patches = nixpkgsPatches ++ [
|
|
|
|
# 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
|
|
|
};
|
|
|
|
updateScript = callPackage ./update.nix {
|
2018-05-18 15:31:32 +01:00
|
|
|
attrPath = "firefox-esr-52-unwrapped";
|
2018-10-01 01:00:00 +01:00
|
|
|
ffversionSuffix = "esr";
|
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
|
|
|
|
2018-05-11 01:10:15 +01:00
|
|
|
firefox-esr-60 = common rec {
|
|
|
|
pname = "firefox-esr";
|
2019-01-30 00:25:51 +00:00
|
|
|
ffversion = "60.5.0esr";
|
2018-05-11 01:10:15 +01:00
|
|
|
src = fetchurl {
|
2018-10-01 01:00:00 +01:00
|
|
|
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
2019-01-30 00:25:51 +00:00
|
|
|
sha512 = "3n7l146gdjwhi0iq85awc0yykvi4x5m91mcylxa5mrq911bv6xgn2i92nzhgnhdilqap5218778vgvnalikzsh67irrncx1hy5f6iyx";
|
2018-05-11 01:10:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = nixpkgsPatches ++ [
|
2019-01-30 00:25:51 +00:00
|
|
|
./no-buildconfig-ffx65.patch
|
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
|
2018-11-07 12:21:17 +00:00
|
|
|
];
|
2018-05-11 01:10:15 +01:00
|
|
|
|
|
|
|
meta = firefox.meta // {
|
|
|
|
description = "A web browser built from Firefox Extended Support Release source tree";
|
|
|
|
};
|
|
|
|
updateScript = callPackage ./update.nix {
|
2018-05-18 15:31:32 +01:00
|
|
|
attrPath = "firefox-esr-60-unwrapped";
|
2018-05-11 01:10:15 +01:00
|
|
|
versionSuffix = "esr";
|
2018-11-16 14:04:54 +00:00
|
|
|
versionKey = "ffversion";
|
2018-05-11 01:10:15 +01:00
|
|
|
};
|
2018-10-01 01:00:00 +01:00
|
|
|
};
|
2018-05-11 01:10:15 +01:00
|
|
|
|
2017-08-15 01:00:00 +01:00
|
|
|
} // (let
|
2017-04-01 01:00:00 +01:00
|
|
|
|
2019-01-01 00:00:00 +00:00
|
|
|
iccommon = args: common (args // {
|
|
|
|
pname = "icecat";
|
|
|
|
isIceCatLike = true;
|
|
|
|
|
|
|
|
meta = (args.meta or {}) // {
|
|
|
|
description = "The GNU version of the Firefox web browser";
|
|
|
|
longDescription = ''
|
|
|
|
GNUzilla is the GNU version of the Mozilla suite, and GNU
|
|
|
|
IceCat is the GNU version of the Firefox web browser.
|
|
|
|
|
|
|
|
Notable differences from mainline Firefox:
|
|
|
|
|
|
|
|
- entirely free software, no non-free plugins, addons,
|
|
|
|
artwork,
|
|
|
|
- no telemetry, no "studies",
|
|
|
|
- sane privacy and security defaults (for instance, unlike
|
|
|
|
Firefox, IceCat does _zero_ network requests on startup by
|
|
|
|
default, which means that with IceCat you won't need to
|
|
|
|
unplug your Ethernet cable each time you want to create a
|
|
|
|
new browser profile without announcing that action to a
|
|
|
|
bunch of data-hungry corporations),
|
|
|
|
- all essential privacy and security settings can be
|
|
|
|
configured directly from the main screen,
|
|
|
|
- optional first party isolation (like TorBrowser),
|
|
|
|
- comes with HTTPS Everywhere (like TorBrowser), Tor Browser
|
|
|
|
Button (like TorBrowser Bundle), LibreJS, and SpyBlock
|
|
|
|
plugins out of the box.
|
|
|
|
|
|
|
|
This package can be installed together with Firefox and
|
|
|
|
TorBrowser, it will use distinct binary names and profile
|
|
|
|
directories.
|
|
|
|
'';
|
|
|
|
homepage = "https://www.gnu.org/software/gnuzilla/";
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = with lib.licenses; [ mpl20 gpl3Plus ];
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
in rec {
|
|
|
|
|
|
|
|
icecat = iccommon rec {
|
|
|
|
ffversion = "60.3.0";
|
|
|
|
icversion = "${ffversion}-gnu1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/gnuzilla/${ffversion}/icecat-${icversion}.tar.bz2";
|
|
|
|
sha256 = "0icnl64nxcyf7dprpdpygxhabsvyhps8c3ixysj9bcdlj9q34ib1";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = nixpkgsPatches ++ [
|
|
|
|
./no-buildconfig.patch
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2019-01-31 16:37:48 +00:00
|
|
|
# Similarly to firefox-esr-52 above.
|
2019-01-01 00:00:00 +00:00
|
|
|
icecat-52 = iccommon rec {
|
|
|
|
ffversion = "52.6.0";
|
|
|
|
icversion = "${ffversion}-gnu1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/gnuzilla/${ffversion}/icecat-${icversion}.tar.bz2";
|
|
|
|
sha256 = "09fn54glqg1aa93hnz5zdcy07cps09dbni2b4200azh6nang630a";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = nixpkgsPatches ++ [
|
|
|
|
# this one is actually an omnipresent bug
|
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1444519
|
|
|
|
./fix-pa-context-connect-retval.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
meta.knownVulnerabilities = [ "Support ended in August 2018." ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}) // (let
|
|
|
|
|
2018-10-01 01:00:00 +01:00
|
|
|
tbcommon = args: common (args // {
|
|
|
|
pname = "tor-browser";
|
|
|
|
isTorBrowserLike = true;
|
|
|
|
|
|
|
|
unpackPhase = ''
|
2018-10-01 01:00:00 +01:00
|
|
|
# fetchFromGitHub produces ro sources, root dir gets a name that
|
|
|
|
# is too long for shebangs. fixing
|
|
|
|
cp -a $src tor-browser
|
|
|
|
chmod -R +w tor-browser
|
|
|
|
cd tor-browser
|
|
|
|
|
|
|
|
# set times for xpi archives
|
|
|
|
find . -exec touch -d'2010-01-01 00:00' {} \;
|
2018-10-01 01:00:00 +01:00
|
|
|
'';
|
|
|
|
|
2018-10-01 01:00:00 +01:00
|
|
|
patches = nixpkgsPatches;
|
2017-04-01 01:00:00 +01:00
|
|
|
|
2019-01-01 00:00:00 +00:00
|
|
|
meta = (args.meta or {}) // {
|
2017-04-01 01:00:00 +01:00
|
|
|
description = "A web browser built from TorBrowser source tree";
|
|
|
|
longDescription = ''
|
|
|
|
This is a version of TorBrowser with bundle-related patches
|
|
|
|
reverted.
|
|
|
|
|
|
|
|
I.e. it's a variant of Firefox with less fingerprinting and
|
|
|
|
some isolation features you can't get with any extensions.
|
|
|
|
|
|
|
|
Or, alternatively, a variant of TorBrowser that works like any
|
|
|
|
other UNIX program and doesn't expect you to run it from a
|
|
|
|
bundle.
|
|
|
|
|
|
|
|
It will use your default Firefox profile if you're not careful
|
|
|
|
even! Be careful!
|
|
|
|
|
2018-03-08 21:33:52 +00:00
|
|
|
It will clash with firefox binary if you install both. But it
|
|
|
|
should not be a problem because you should run browsers in
|
|
|
|
separate users/VMs anyway.
|
2017-04-01 01:00:00 +01:00
|
|
|
|
|
|
|
Create new profile by starting it as
|
|
|
|
|
|
|
|
$ firefox -ProfileManager
|
|
|
|
|
|
|
|
and then configure it to use your tor instance.
|
2018-03-08 21:33:52 +00:00
|
|
|
|
|
|
|
Or just use `tor-browser-bundle` package that packs this
|
|
|
|
`tor-browser` back into a sanely-built bundle.
|
2017-04-01 01:00:00 +01:00
|
|
|
'';
|
2019-01-31 16:37:54 +00:00
|
|
|
homepage = "https://www.torproject.org/projects/torbrowser.html";
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = with lib.licenses; [ mpl20 bsd3 ];
|
2017-04-01 01:00:00 +01:00
|
|
|
};
|
2018-10-01 01:00:00 +01:00
|
|
|
});
|
2017-08-15 01:00:00 +01:00
|
|
|
|
|
|
|
in rec {
|
|
|
|
|
2018-10-01 01:00:00 +01:00
|
|
|
tor-browser-7-5 = (tbcommon rec {
|
|
|
|
ffversion = "52.9.0esr";
|
|
|
|
tbversion = "7.5.6";
|
2018-02-01 00:00:00 +00:00
|
|
|
|
|
|
|
# FIXME: fetchFromGitHub is not ideal, unpacked source is >900Mb
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SLNOS";
|
|
|
|
repo = "tor-browser";
|
2018-07-01 01:00:00 +01:00
|
|
|
# branch "tor-browser-52.9.0esr-7.5-2-slnos"
|
|
|
|
rev = "95bb92d552876a1f4260edf68fda5faa3eb36ad8";
|
|
|
|
sha256 = "1ykn3yg4s36g2cpzxbz7s995c33ij8kgyvghx38z4i8siaqxdddy";
|
2018-02-01 00:00:00 +00:00
|
|
|
};
|
2018-10-01 01:00:00 +01:00
|
|
|
}).override {
|
|
|
|
gtk3Support = false;
|
|
|
|
};
|
2018-02-01 00:00:00 +00:00
|
|
|
|
2018-10-01 01:00:00 +01:00
|
|
|
tor-browser-8-0 = tbcommon rec {
|
2019-01-01 00:00:00 +00:00
|
|
|
ffversion = "60.5.0esr";
|
|
|
|
tbversion = "8.0.5";
|
2018-03-15 00:00:00 +00:00
|
|
|
|
|
|
|
# FIXME: fetchFromGitHub is not ideal, unpacked source is >900Mb
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SLNOS";
|
|
|
|
repo = "tor-browser";
|
2019-01-01 00:00:00 +00:00
|
|
|
# branch "tor-browser-60.5.0esr-8.0-1-slnos"
|
|
|
|
rev = "7f113a4ea0539bd2ea9687fe4296c880f2b006c4";
|
|
|
|
sha256 = "11qbhwy2q9rinfw8337b9f78x0r26lnxg25581z85vxshp2jszdq";
|
2018-03-15 00:00:00 +00:00
|
|
|
};
|
2018-10-01 01:00:00 +01:00
|
|
|
};
|
2018-03-15 00:00:00 +00:00
|
|
|
|
2018-10-01 01:00:00 +01:00
|
|
|
tor-browser = tor-browser-8-0;
|
2017-08-15 01:00:00 +01:00
|
|
|
|
2017-08-15 01:00:00 +01:00
|
|
|
})
|