Commit Graph

128 Commits

Author SHA1 Message Date
Nicolas Benes
8985aca004 tor-browser-bundle-bin: Keep files when store path has not changed
Originally, some TBB files in the user's $HOME are always deleted on
startup, and as a result, addons are not loaded automatically at
startup. For example, NoScript is disabled by default and needs a manual
reload cycle (dis-/enable by hand).

This change preserves the files with the addon information as long as
the contained store path is the same, i.e. TBB was not modified.  When
TBB is updated, the files are removed as before, so that they don't
contain paths to the store location of the (now outdated) previous TBB.
A manual reload addon cycle is necessary once.
2021-12-28 17:01:11 +01:00
FliegendeWurst
082cfaaef3 tor-browser-bundle-bin: 11.0.2 -> 11.0.3 2021-12-21 10:02:59 +01:00
elsirion
6b2221bdf2
tor-browser-bundle-bin: 11.0 -> 11.0.2 2021-12-09 17:04:52 +01:00
Artturin
5beb83e061 tor-browser-bundle-bin: enable pulseaudio by default 2021-11-21 19:05:05 +02:00
FliegendeWurst
95118217d1 tor-browser-bundle-bin: 10.5.8 -> 11.0 2021-11-09 16:29:08 +01:00
Davíð Steinn Geirsson
5499f32f08 tor-browser-bundle-bin: Enable content sandbox and hardened malloc
Tor browser enables multi-process support in firefox to sandbox each site
in its own process. This is a very important security feature. It was
disabled in the nixpkgs version, according to a comment due to "crashing
tabs", but running with it enabled I have not been able to recreate this.
Sandboxing enabled is the upstream default, and if we can't ship a tor
browser that way then we should not ship one at all.

Also re-enable useHardenedMalloc to use graphene-hardened-malloc. Here
there was also a comment, in this case saying it caused "crashes with
intel driver". I have also been unable to recreate this on my Intel
UHD P630 onboard graphics.

I believe neither of these are issues any longer.
2021-11-05 22:37:42 +00:00
FliegendeWurst
30a9e56295 tor-browser-bundle-bin: 10.5.8 -> 10.5.10 2021-10-26 16:12:46 +02:00
FliegendeWurst
1a53475456 tor-browser-bundle-bin: 10.5.6 -> 10.5.8 2021-10-07 22:13:06 +02:00
jakobrs
7325f6a4f1 tor-browser-bundle-bin: Add eff.org mirror 2021-10-02 02:10:35 +03:00
FliegendeWurst
582e0a4926 tor-browser-bundle-bin: 10.5.5 -> 10.5.6 2021-09-15 17:27:45 +02:00
Lux
bd6f316efa tor-browser-bundle-bin: 10.5.2 -> 10.5.5 2021-08-21 07:40:07 +02:00
FliegendeWurst
42e69ba13f tor-browser-bundle-bin: 10.0.18 -> 10.5.2 2021-07-15 23:18:08 +02:00
ckie
4539cc164d
tor-browser-bundle-bin: 10.0.17 -> 10.0.18 2021-06-22 17:19:50 +03:00
Cap Petschulat
af0dc887b7 Remove myself as maintainer
I'm not a maintainer.
2021-06-18 23:34:11 +09:00
FliegendeWurst
0fc1a3d0d8 tor-browser-bundle-bin: 10.0.16 -> 10.0.17 2021-06-06 11:10:16 +02:00
Jan Tojnar
468cb5980b gnome: rename from gnome3
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
2021-05-08 09:47:42 +02:00
Samuel Gräfenstein
c7aa3db361
tor-browser-bundle-bin: add meta.mainProgram 2021-04-29 16:13:04 +02:00
Robert Schütz
f5f0c3be1a
tor-browser-bundle-bin: use ffmpeg instead of ffmpeg_3 (#120653) 2021-04-27 12:40:25 +02:00
FliegendeWurst
9c39fef460 tor-browser-bundle-bin: 10.0.15 -> 10.0.16 2021-04-21 18:13:24 +02:00
Sandro
262a728ae5
Merge pull request #117867 from mrVanDalo/feature/tor-browser-override
tor-browser-bundle-bin: make overrideAttrs work
2021-03-29 00:09:38 +02:00
FliegendeWurst
d0ee6127dc tor-browser-bundle-bin: 10.0.14 -> 10.0.15 2021-03-28 11:25:58 +02:00
Ingolf Wagner
8dadf3873f
tor-browser-bundle-bin: make overrideAttrs work 2021-03-28 09:22:07 +02:00
thyol
14d136c0a7 tor-browser-bundle-bin: 10.0.13 -> 10.0.14 2021-03-27 21:44:18 +01:00
Xinglu Chen
39b57a4d0d
tor-browser-bundle-bin: 10.0.12 -> 10.0.13
Update to latest release.

<https://blog.torproject.org/new-release-tor-browser-10013>
2021-03-06 21:31:52 +01:00
Nicolás Kennedy
b0202dd63f
tor-browser-bundle-bin: 10.0.9 -> 10.0.12
Update to latest release
https://blog.torproject.org/new-release-tor-browser-10012
2021-02-23 22:38:11 -08:00
Xinglu Chen
20d052544f
tor-browser-bundle-bin: 10.0.8 -> 10.0.9
Update to latest release.

https://blog.torproject.org/new-release-tor-browser-1009
2021-01-27 09:17:58 +01:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
yoctocell
1ce9fe8d1b
tor-browser-bundle-bin: 10.0.7 -> 10.0.8
Update to latest release

https://blog.torproject.org/new-release-tor-browser-1008
2021-01-13 21:46:33 +01:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Sam Bickley
e924c5d80f tor-browser-bundle-bin: 10.0.6 -> 10.0.7 2020-12-15 17:40:01 -06:00
Sam Bickley
8bb972a8dd tor-browser-bundle-bin: 10.0.5 -> 10.0.6 2020-12-14 16:47:44 -06:00
Chuck
53dbd00945 tor-browser-bundle-bin: 10.0.4 → 10.0.5 2020-11-25 16:13:08 -08:00
Dominik Xaver Hörl
9e8f4ff79a tor-browser-bundle-bin: 10.0.2 -> 10.0.4 2020-11-13 13:02:23 +01:00
Chuck
4117c0b7df tor-browser-bundle-bin: Fix extension path. Fixes NoScript. 2020-11-12 08:00:38 -08:00
Chris Double
f4a3f2e6ce tor-browser-bundle-bin: remove myself as maintainer 2020-11-09 11:44:51 +00:00
Yury Bulka
968348bd18 tor-browser-bundle-bin: mark as broken
NoScript is missing / broken; Highest Security Level doesn't disable
JavaScript.

See issue #83096 for more info.
2020-11-03 00:30:50 +02:00
Justin Humm
03d85e8aac
tor-browser-bundle-bin: 10.0.1 -> 10.0.2 2020-10-25 12:00:15 +01:00
yoctocell
178ca67f93
tor-browser-bundle-bin: 10.0 -> 10.0.1 2020-10-15 15:00:50 +02:00
yoctocell
281f44fb76
tor-browser-bundle-bin: 9.5.4 -> 10.0 2020-09-23 15:47:05 +02:00
Tethys Svensson
14d8030618 tor-browser-bundle-bin: 9.5.3 -> 9.5.4 2020-08-28 12:54:28 -07:00
Karl Hallsby
1970c2dbd0 tor-browser-bundle-bin: 9.5 -> 9.5.3
Squashed commits:
1. tor-browser-bundle-bin: 9.5 -> 9.5.1
2. tor-browser-bundle-bin: 9.5.1 -> 9.5.3
2020-07-31 10:12:07 -07:00
Karl Hallsby
dde584b3c7 maintainers: add KarlJoad 2020-07-31 10:12:07 -07:00
Lassulus
45e2ff349f
tor-browser: disable hardening by default (#93154)
* tor-browser: disable hardening by default

this seems to cause crashes with certain tabs.
relevant issue: https://github.com/NixOS/nixpkgs/issues/86356

* Update pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix

Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2020-07-25 12:44:06 +02:00
Doron Behar
01d4e2fe33 treewide: use ffmpeg_3 explicitly if not wanted otherwise
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that
used `ffmpeg` without requiring a specific version now use ffmpeg_3
explicitly so they shouldn't change.
2020-06-12 11:55:31 -07:00
Emery Hemingway
468091a623 tor-browser-bundle-bin: 9.0.9 -> 9.5 2020-06-03 13:22:00 +05:30
Andy Fowlston
85e4f2d554 tor-browser-bundle-bin: 9.0.7 -> 9.0.9
https://blog.torproject.org/new-release-tor-browser-909
https://blog.torproject.org/new-release-tor-browser-908
2020-04-09 18:51:59 +01:00
Florian Klink
ae3928997c
Merge pull request #82807 from mehlon/tor-browser
tor-browser-bundle-bin: enable multimedia support by default
2020-03-29 19:41:40 +02:00
mehlon
79f6b312ba tor-browser-bundle-bin: 9.0.6 -> 9.0.7 2020-03-24 17:19:42 +01:00
mehlon
ceda3f4063 tor-browser-bundle-bin: enable multimedia support by default 2020-03-17 21:48:32 +01:00
mehlon
4b80e8a59f tor-browser-bundle-bin: 9.0.5 -> 9.0.6 2020-03-16 22:49:14 +01:00