From 2986b198bfce5d25d0d440349958517ebef3b696 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 16 Sep 2025 17:20:14 +0200 Subject: [PATCH] buildMozillaMach: use nss 3.115 for 143, 3.116 for 144 --- pkgs/build-support/build-mozilla-mach/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/build-mozilla-mach/default.nix b/pkgs/build-support/build-mozilla-mach/default.nix index 86d780979a72..834654bee746 100644 --- a/pkgs/build-support/build-mozilla-mach/default.nix +++ b/pkgs/build-support/build-mozilla-mach/default.nix @@ -90,6 +90,7 @@ in nspr, nss_esr, nss_3_114, + nss_3_115, nss_latest, onnxruntime, pango, @@ -573,8 +574,10 @@ buildStdenv.mkDerivation { xorg.xorgproto zlib ( - if (lib.versionAtLeast version "143") then + if (lib.versionAtLeast version "144") then nss_latest + else if (lib.versionAtLeast version "143") then + nss_3_115 else if (lib.versionAtLeast version "141") then nss_3_114 else