Merge pull request #28678 from oxij/pkg/fix-tor-browser

firefoxPackages: tor-browser: use gcc5

authored by Joachim F and committed by GitHub 350781b7 c12dc3bf

+2 -1
+2 -1
pkgs/applications/networking/browsers/firefox/packages.nix
··· 1 - { lib, callPackage, stdenv, fetchurl, fetchFromGitHub, fetchpatch }: 2 3 let common = opts: callPackage (import ./common.nix opts); in 4 ··· 102 platforms = lib.platforms.linux; 103 }; 104 } { 105 ffmpegSupport = false; 106 }; 107
··· 1 + { lib, callPackage, stdenv, overrideCC, gcc5, fetchurl, fetchFromGitHub, fetchpatch }: 2 3 let common = opts: callPackage (import ./common.nix opts); in 4 ··· 102 platforms = lib.platforms.linux; 103 }; 104 } { 105 + stdenv = overrideCC stdenv gcc5; 106 ffmpegSupport = false; 107 }; 108