mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 18:34:38 +00:00
firefox: 73.0.1 -> 74.0 (#82276)
https://www.mozilla.org/en-US/firefox/74.0/releasenotes/ Co-authored-by: Daniel Frank <git@danielfrank.net>
This commit is contained in:
parent
8fa5eb488b
commit
ea8362e315
@ -94,11 +94,6 @@ stdenv.mkDerivation ({
|
||||
patches = [
|
||||
./env_var_for_system_dir.patch
|
||||
]
|
||||
++ lib.optional (lib.versionAtLeast ffversion "73") (fetchpatch {
|
||||
# https://phabricator.services.mozilla.com/D60667
|
||||
url = "https://hg.mozilla.org/mozilla-central/raw-rev/b3d8b08265b800165d684281d19ac845a8ff9a66";
|
||||
sha256 = "0b4s75w7sl619rglcjmlyvyibpj2ar5cpy6pnywl1xpd9qzyb27p";
|
||||
})
|
||||
++ patches;
|
||||
|
||||
|
||||
@ -297,6 +292,9 @@ stdenv.mkDerivation ({
|
||||
inherit browserName;
|
||||
} // lib.optionalAttrs gtk3Support { inherit gtk3; };
|
||||
} //
|
||||
lib.optionalAttrs (lib.versionAtLeast ffversion "74") {
|
||||
hardeningDisable = [ "format" ]; # -Werror=format-security
|
||||
} //
|
||||
# the build system verifies checksums of the bundled rust sources
|
||||
# ./third_party/rust is be patched by our libtool fixup code in stdenv
|
||||
# unfortunately we can't just set this to `false` when we do not want it.
|
||||
|
@ -7,10 +7,10 @@ in
|
||||
rec {
|
||||
firefox = common rec {
|
||||
pname = "firefox";
|
||||
ffversion = "73.0.1";
|
||||
ffversion = "74.0";
|
||||
src = fetchurl {
|
||||
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
|
||||
sha512 = "1vdz711v44xdiry5vm4rrg7fjkrlnyn5jjkaq0bcf98jwrn9bjklmgwblrrnvmpc9pjd2ff3m7354q7vy6gd6c3yh2jhbq91v2w5yl9";
|
||||
sha512 = "245n2ilfgx3rd0xlxzpg4gcwddcy0cgaqnaf5pwixjx0n8py1imiylwlsbihf70s41cq5q8awckchs287yysr4v6pdfqqbj7s0f02ki";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
Loading…
Reference in New Issue
Block a user