[Backport release-25.05] firefox-{beta,devedition}-unwrapped: 142.0b9 -> 143.0b2 (+ nss_latest: 3.114 -> 3.115, nss_3_114: init) (#436887)

This commit is contained in:
Ryan Hendrickson
2025-08-28 13:45:15 -04:00
committed by GitHub
6 changed files with 18 additions and 7 deletions

View File

@@ -10,11 +10,11 @@
buildMozillaMach rec {
pname = "firefox-beta";
binaryName = pname;
version = "142.0b9";
version = "143.0b2";
applicationName = "Firefox Beta";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
sha512 = "5a350ce0907977aa5d803801f6d00a4b91f2f2f29994a5951c48ee39f7b3b87843e992950890e59fb7a897e0912461d5661361c89e0deb59da226d1aac7d95ef";
sha512 = "3d206037dbd849158b70b8a8fda8527595ead612033a6dd2f0c0417ce0bc50312d2911e3b5d2964a01ab686c7636856a32f43163ce895767a11c1f3298cbf6e8";
};
meta = {

View File

@@ -10,13 +10,13 @@
buildMozillaMach rec {
pname = "firefox-devedition";
binaryName = pname;
version = "142.0b9";
version = "143.0b2";
applicationName = "Firefox Developer Edition";
requireSigning = false;
branding = "browser/branding/aurora";
src = fetchurl {
url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz";
sha512 = "1223065e5c614be9b72f3306daebc98e032d993797bab4d8e646523dfcd9aa554f442b302a32e6281ebb41fcbed49f63097a58fef2a612ae8ff0371f670bad3c";
sha512 = "265a3b95b3c2a3e5cd051334f9a8c9bac1f8dba10d7a625bfceeb9a75f1e45617975dc26d1760c2e656b26fdf98f18da3181402a067252451d2ac71614dcfb6d";
};
# buildMozillaMach sets MOZ_APP_REMOTINGNAME during configuration, but

View File

@@ -89,6 +89,7 @@ in
nasm,
nspr,
nss_esr,
nss_3_114,
nss_latest,
onnxruntime,
pango,
@@ -572,7 +573,12 @@ buildStdenv.mkDerivation {
xorg.xorgproto
zlib
(
if (lib.versionAtLeast version "129") then nss_latest else nss_esr # 3.90
if (lib.versionAtLeast version "143") then
nss_latest
else if (lib.versionAtLeast version "129") then
nss_3_114
else
nss_esr # 3.90
)
]
++ lib.optional alsaSupport alsa-lib

View File

@@ -0,0 +1,4 @@
import ./generic.nix {
version = "3.114";
hash = "sha256-YVtXk1U9JtqfOH7+m/+bUI/yXJcydqjjGbCy/5xbMe8=";
}

View File

@@ -5,6 +5,6 @@
# Example: nix-shell ./maintainers/scripts/update.nix --argstr package cacert
import ./generic.nix {
version = "3.114";
hash = "sha256-YVtXk1U9JtqfOH7+m/+bUI/yXJcydqjjGbCy/5xbMe8=";
version = "3.115";
hash = "sha256-8PeFeaIOtjBZJLBx3ONwZlK5SaLnjKEFoZWvVsu/3tA=";
}

View File

@@ -9213,6 +9213,7 @@ with pkgs;
};
nss_latest = callPackage ../development/libraries/nss/latest.nix { };
nss_3_114 = callPackage ../development/libraries/nss/3_114.nix { };
nss_esr = callPackage ../development/libraries/nss/esr.nix { };
nss = nss_esr;
nssTools = nss.tools;