summaryrefslogtreecommitdiff
path: root/nongnu/packages/mozilla.scm
diff options
context:
space:
mode:
authorJonathan Brielmaier <jonathan.brielmaier@web.de>2023-08-16 21:34:59 +0200
committerJonathan Brielmaier <jonathan.brielmaier@web.de>2023-08-16 21:34:59 +0200
commit2fc8f7b168441b7c6fa70acc1c994b743ae1638d (patch)
tree6d5aa6f6738e714e98e610b2a8a96d51053eed81 /nongnu/packages/mozilla.scm
parentd44f0cde50ca96eabf6e7b0f0c9bdbd89508b790 (diff)
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.
Diffstat (limited to 'nongnu/packages/mozilla.scm')
-rw-r--r--nongnu/packages/mozilla.scm19
1 files changed, 7 insertions, 12 deletions
diff --git a/nongnu/packages/mozilla.scm b/nongnu/packages/mozilla.scm
index 83a1a63..5d7bb14 100644
--- a/nongnu/packages/mozilla.scm
+++ b/nongnu/packages/mozilla.scm
@@ -95,19 +95,19 @@
;; 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.
-(define %firefox-esr-build-id "20230801000000")
+(define %firefox-esr-build-id "20230816000000")
(define-public firefox-esr
(package
(name "firefox-esr")
- (version "102.14.0esr")
+ (version "115.1.0esr")
(source
(origin
(method url-fetch)
(uri (string-append "https://archive.mozilla.org/pub/firefox/releases/"
version "/source/firefox-" version ".source.tar.xz"))
(sha256
- (base32 "1vpglmqm97ac3rs273qv7kldkrkawyhdnwwqhvyjqiwaq20m1f0s"))))
+ (base32 "19hpds04wws7kw96a253zi3nk4wp1iyjw1l3xb059237ddbjxjd7"))))
(build-system gnu-build-system)
(arguments
(list
@@ -418,7 +418,7 @@
gtk+
gtk+-2
hunspell
- icu4c
+ icu4c-73
jemalloc
libcanberra
libevent
@@ -458,12 +458,12 @@
wasm32-wasi-clang-toolchain
m4
nasm
- node
+ node-lts
perl
pkg-config
python
rust-firefox-esr
- rust-cbindgen-0.23
+ rust-cbindgen-0.24
which
yasm))
(home-page "https://mozilla.org/firefox/")
@@ -533,15 +533,10 @@ MOZ_ENABLE_WAYLAND=1 exec ~a $@\n"
(replace 'set-build-id
(lambda _
(setenv "MOZ_BUILD_DATE" #$%firefox-build-id)))))))
- (inputs
- (modify-inputs (package-inputs firefox-esr)
- (replace "icu4c" icu4c-73)))
(native-inputs
(modify-inputs (package-native-inputs firefox-esr)
(replace "rust" rust-firefox)
- (replace "rust:cargo" `(,rust-firefox "cargo"))
- (replace "node" node-lts)
- (replace "rust-cbindgen" rust-cbindgen-0.24)))
+ (replace "rust:cargo" `(,rust-firefox "cargo"))))
(description
"Full-featured browser client built from Firefox source tree, without
the official icon and the name \"firefox\".")))