firefoxPackages.tor-browser-8-0: apply a fix from bugzilla

This commit is contained in:
SLNOS 2018-10-01 00:00:00 +00:00 committed by Jan Malakhovski
parent bd7c0c8a6c
commit 0e3df42d64

View File

@ -14,6 +14,12 @@ let
sha256 = "11acb0ms4jrswp7268nm2p8g8l4lv8zc666a5bqjbb09x9k6b78k";
};
firefox60_triplet_patch = fetchpatch {
name = "triplet.patch";
url = https://hg.mozilla.org/releases/mozilla-release/raw-rev/bc651d3d910c;
sha256 = "0iybkadsgsf6a3pq3jh8z1p110vmpkih8i35jfj8micdkhxzi89g";
};
in
rec {
@ -110,7 +116,8 @@ rec {
find . -exec touch -d'2010-01-01 00:00' {} \;
'';
patches = nixpkgsPatches;
patches = nixpkgsPatches
++ lib.optional (args.tbversion == "8.0.2") firefox60_triplet_patch;
meta = {
description = "A web browser built from TorBrowser source tree";