diff options
-rw-r--r-- | nongnu/packages/mozilla.scm | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/nongnu/packages/mozilla.scm b/nongnu/packages/mozilla.scm index 9193d5dc..3ffc756e 100644 --- a/nongnu/packages/mozilla.scm +++ b/nongnu/packages/mozilla.scm @@ -563,18 +563,7 @@ Release (ESR) version.") #~(modify-phases #$phases (replace 'set-build-id (lambda _ - (setenv "MOZ_BUILD_DATE" #$%firefox-build-id))) - ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1927380 - (add-before 'configure 'patch-icu-lookup - (lambda _ - (let* ((file "js/moz.configure") - (old-content (call-with-input-file file get-string-all))) - (substitute* file - (("icu-i18n >= 76.1" all) - (string-append all ", icu-uc >= 76.1"))) - (if (string=? old-content - (pk (call-with-input-file file get-string-all))) - (error "substitute did nothing, phase requires an update"))))))))) + (setenv "MOZ_BUILD_DATE" #$%firefox-build-id))))))) (native-inputs (modify-inputs (package-native-inputs firefox-esr) (replace "rust" rust-firefox) |