summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Volf <~@wolfsden.cz>2025-01-07 18:46:47 +0100
committerJohn Kehayias <john.kehayias@protonmail.com>2025-01-08 14:44:18 -0500
commit83f204058791282372f87d87bdcb64e848015e61 (patch)
tree8fc47a5f6e410c6455947314962df906b756ebaf
parent7912c08045872e8d31597e0c943a1bf6edf0056c (diff)
nongnu: firefox: Update to 134.0 [security fixes].
Fixes CVE-2025-0237, CVE-2025-0238, CVE-2025-0239, CVE-2025-0240, CVE-2025-0241, CVE-2025-0242, CVE-2025-0243, CVE-2025-0244, CVE-2025-0245, CVE-2025-0246, CVE-2025-0247. * nongnu/packages/mozilla.scm (firefox): Update to 134.0. [inputs]: Replace icu4c with icu4c-75. Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
-rw-r--r--nongnu/packages/mozilla.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/nongnu/packages/mozilla.scm b/nongnu/packages/mozilla.scm
index b20450a..9a5fb6b 100644
--- a/nongnu/packages/mozilla.scm
+++ b/nongnu/packages/mozilla.scm
@@ -546,13 +546,13 @@ MOZ_ENABLE_WAYLAND=1 exec ~a $@\n"
546 546
547;; Update this id with every firefox update to its release date. 547;; Update this id with every firefox update to its release date.
548;; It's used for cache validation and therefore can lead to strange bugs. 548;; It's used for cache validation and therefore can lead to strange bugs.
549(define %firefox-build-id "20241209214051") 549(define %firefox-build-id "20250106142344")
550 550
551(define-public firefox 551(define-public firefox
552 (package 552 (package
553 (inherit firefox-esr) 553 (inherit firefox-esr)
554 (name "firefox") 554 (name "firefox")
555 (version "133.0.3") 555 (version "134.0")
556 (source 556 (source
557 (origin 557 (origin
558 (method url-fetch) 558 (method url-fetch)
@@ -568,7 +568,7 @@ MOZ_ENABLE_WAYLAND=1 exec ~a $@\n"
568 "firefox-esr-compare-paths.patch" 568 "firefox-esr-compare-paths.patch"
569 "firefox-use-system-wide-dir.patch"))) 569 "firefox-use-system-wide-dir.patch")))
570 (sha256 570 (sha256
571 (base32 "06ya18ma1gndci0aygz75hidn3kwa1kji78g8smh7fq0091aad7i")))) 571 (base32 "0zj50r6b7kazdbyv89x4l5r4cdfwn9cj7xkdw46w3117sy5hd26a"))))
572 (arguments 572 (arguments
573 (substitute-keyword-arguments (package-arguments firefox-esr) 573 (substitute-keyword-arguments (package-arguments firefox-esr)
574 ((#:phases phases) 574 ((#:phases phases)
@@ -576,6 +576,9 @@ MOZ_ENABLE_WAYLAND=1 exec ~a $@\n"
576 (replace 'set-build-id 576 (replace 'set-build-id
577 (lambda _ 577 (lambda _
578 (setenv "MOZ_BUILD_DATE" #$%firefox-build-id))))))) 578 (setenv "MOZ_BUILD_DATE" #$%firefox-build-id)))))))
579 (inputs
580 (modify-inputs (package-inputs firefox-esr)
581 (replace "icu4c" icu4c-75)))
579 (native-inputs 582 (native-inputs
580 (modify-inputs (package-native-inputs firefox-esr) 583 (modify-inputs (package-native-inputs firefox-esr)
581 (replace "rust" rust-firefox) 584 (replace "rust" rust-firefox)