diff options
author | Ian Eure <ian@retrospec.tv> | 2025-04-04 14:15:41 -0700 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-04-04 14:15:41 -0700 |
commit | f795209d51e39ce56f0e1947cd2c02d0b357a01c (patch) | |
tree | e21fe3271b0441940b7a19980391f072e5533c39 | |
parent | 1436165c2f0adbb44d3f033c54db692167591248 (diff) | |
download | guix-f795209d51e39ce56f0e1947cd2c02d0b357a01c.tar.gz guix-f795209d51e39ce56f0e1947cd2c02d0b357a01c.zip |
Revert "gnu: librewolf: Update to 137.0-1 [security fixes]."
This reverts commit f664a9377deed2c9e644b53a0b497153c7e7a41f.
-rw-r--r-- | gnu/packages/librewolf.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index ae4d64534c..1cb7084f23 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm @@ -206,17 +206,17 @@ ;; Update this id with every update to its release date. ;; It's used for cache validation and therefore can lead to strange bugs. ;; ex: date '+%Y%m%d%H%M%S' -(define %librewolf-build-id "20250401171639") +(define %librewolf-build-id "20250327215540") (define-public librewolf (package (name "librewolf") - (version "137.0-1") + (version "136.0.4-1") (source (make-librewolf-source #:version version - #:firefox-hash "07d9rdxmp48gbk41y1c6gggzziv9aqdhjwgi6c0hrf6chcppxi0y" - #:librewolf-hash "164bvissxzhzlwjafp9pdyhhg8hhdxh8w61ifkak497qm4yf8af7" + #:firefox-hash "0hn2ywyacgg8n47qz1q2l8bf32mszj3vnpkl6kag3wmqqbhvja2a" + #:librewolf-hash "045il4xrji2zh1scx3aiy6hx6jv098232aycda6bhsh27szbsrfa" #:l10n firefox-l10n)) (build-system gnu-build-system) (arguments @@ -236,6 +236,8 @@ "--with-system-ffi" "--enable-system-pixman" "--enable-jemalloc" + + ;; see https://bugs.gnu.org/32833 "--with-system-nspr" "--with-system-nss" @@ -310,7 +312,7 @@ (libavcodec (string-append ffmpeg "/lib/libavcodec.so"))) ;; Arrange to load libavcodec.so by its absolute file name. - (substitute* + (substitute* "dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp" (("libavcodec\\.so") libavcodec))))) @@ -403,7 +405,7 @@ (string-append all ", icu-uc >= 76.1"))) (if (string=? old-content (pk (call-with-input-file file get-string-all))) - (error + (error "substitute did nothing, phase requires an update"))))) (replace 'configure (lambda* (#:key inputs outputs configure-flags @@ -476,7 +478,7 @@ (invoke "./mach" "configure"))) (add-before 'build 'fix-addons-placeholder (lambda _ - (substitute* + (substitute* "toolkit/locales/en-US/toolkit/about/aboutAddons.ftl" (("addons.mozilla.org") "gnuzilla.gnu.org")))) |