firefox: 88.0.1 -> 89.0

https://www.mozilla.org/en-US/firefox/89.0/releasenotes/
(cherry picked from commit bcc35ef63fbabdd9e0b03213fb4af67dedf4c359)
This commit is contained in:
Martin Weinelt 2021-05-31 13:31:09 +02:00
parent 05a82f0f46
commit 66959b52fd
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 9 additions and 3 deletions

View File

@ -16,6 +16,10 @@
### optionals
## backported libraries
, rust-cbindgen_latest
## optional libraries
, alsaSupport ? stdenv.isLinux, alsaLib
@ -90,6 +94,8 @@ let
then "/Applications/${binaryNameCapitalized}.app/Contents/MacOS"
else "/bin";
rust-cbindgen_pkg = if lib.versionAtLeast ffversion "89" then rust-cbindgen_latest else rust-cbindgen;
# 78 ESR won't build with rustc 1.47
inherit (if lib.versionAtLeast ffversion "82" then rustPackages else rustPackages_1_45)
rustc cargo;
@ -226,7 +232,7 @@ buildStdenv.mkDerivation ({
perl
pkg-config
python3
rust-cbindgen
rust-cbindgen_pkg
rustc
which
unzip

View File

@ -7,10 +7,10 @@ in
rec {
firefox = common rec {
pname = "firefox";
ffversion = "88.0.1";
ffversion = "89.0";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
sha512 = "e2d7fc950ba49f225c83ee1d799d6318fcf16c33a3b7f40b85c49d5b7865f7e632c703e5fd227a303b56e2565d0796283ebb12d7fd1a02781dcaa45e84cea934";
sha512 = "5089720feda15d054d0aa4c3bdeb84760314dadd6381d7360e688d8e396154868220c6315add650d8d2a42652cb8a9bfeb833885812ef0bd70a74ee58ad18aa3";
};
meta = {