diff options
author | Tomas Volf <~@wolfsden.cz> | 2025-06-26 23:10:16 +0200 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-06-28 21:03:20 +0800 |
commit | f076df5c6ad04353757efbe5b22fdca4a36b0f8a (patch) | |
tree | ab619024f8b6b7a9a27e8b1a7b0108f3f74fc8cc | |
parent | 1b17c6dfc04faf545e4142a1d5efab6a93d31fcf (diff) |
nongnu: firefox: Remove obsolete phase.
* nongnu/packages/mozilla.scm (firefox)[arguments]<#:phases>: Remome
'patch-icu-lookup.
Signed-off-by: Hilton Chain <hako@ultrarare.space>
-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) |