nongnu: firefox-esr: Update to 115.1.0esr.

* nongnu/packages/mozilla.scm (firefox-esr): Update to 115.1.0esr.
[inputs]: Use `icu4c-73`.
[native-inputs]: Use `node-lts` and `rust-cbindgen-0.24`.
(firefox)[inputs]: Remove section.
[native-inputs]: No longer replace `node` and `rust-cbindgen-0.24` as
firefox-esr uses them now in recent enough versions.
This commit is contained in:
Jonathan Brielmaier 2023-08-16 21:34:59 +02:00
parent d44f0cde50
commit 2fc8f7b168
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -95,19 +95,19 @@
;; Update this id with every firefox update to it's release date. ;; Update this id with every firefox update to it's release date.
;; It's used for cache validation and therefor can lead to strange bugs. ;; It's used for cache validation and therefor can lead to strange bugs.
(define %firefox-esr-build-id "20230801000000") (define %firefox-esr-build-id "20230816000000")
(define-public firefox-esr (define-public firefox-esr
(package (package
(name "firefox-esr") (name "firefox-esr")
(version "102.14.0esr") (version "115.1.0esr")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://archive.mozilla.org/pub/firefox/releases/" (uri (string-append "https://archive.mozilla.org/pub/firefox/releases/"
version "/source/firefox-" version ".source.tar.xz")) version "/source/firefox-" version ".source.tar.xz"))
(sha256 (sha256
(base32 "1vpglmqm97ac3rs273qv7kldkrkawyhdnwwqhvyjqiwaq20m1f0s")))) (base32 "19hpds04wws7kw96a253zi3nk4wp1iyjw1l3xb059237ddbjxjd7"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
(list (list
@ -418,7 +418,7 @@
gtk+ gtk+
gtk+-2 gtk+-2
hunspell hunspell
icu4c icu4c-73
jemalloc jemalloc
libcanberra libcanberra
libevent libevent
@ -458,12 +458,12 @@
wasm32-wasi-clang-toolchain wasm32-wasi-clang-toolchain
m4 m4
nasm nasm
node node-lts
perl perl
pkg-config pkg-config
python python
rust-firefox-esr rust-firefox-esr
rust-cbindgen-0.23 rust-cbindgen-0.24
which which
yasm)) yasm))
(home-page "https://mozilla.org/firefox/") (home-page "https://mozilla.org/firefox/")
@ -533,15 +533,10 @@ MOZ_ENABLE_WAYLAND=1 exec ~a $@\n"
(replace 'set-build-id (replace 'set-build-id
(lambda _ (lambda _
(setenv "MOZ_BUILD_DATE" #$%firefox-build-id))))))) (setenv "MOZ_BUILD_DATE" #$%firefox-build-id)))))))
(inputs
(modify-inputs (package-inputs firefox-esr)
(replace "icu4c" icu4c-73)))
(native-inputs (native-inputs
(modify-inputs (package-native-inputs firefox-esr) (modify-inputs (package-native-inputs firefox-esr)
(replace "rust" rust-firefox) (replace "rust" rust-firefox)
(replace "rust:cargo" `(,rust-firefox "cargo")) (replace "rust:cargo" `(,rust-firefox "cargo"))))
(replace "node" node-lts)
(replace "rust-cbindgen" rust-cbindgen-0.24)))
(description (description
"Full-featured browser client built from Firefox source tree, without "Full-featured browser client built from Firefox source tree, without
the official icon and the name \"firefox\"."))) the official icon and the name \"firefox\".")))