nongnu: firefox: Update to 85.0.

* nongnu/packages/mozilla.scm (firefox): Update to 85.0.
[native-inputs]: Raise rust and rust:cargo to 1.47 as required.
This commit is contained in:
Jonathan Brielmaier 2021-01-26 19:38:01 +01:00
parent 3b9209e335
commit 61cc337d42
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -78,19 +78,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-build-id "20210106000000") (define %firefox-build-id "20210126000000")
(define-public firefox (define-public firefox
(package (package
(name "firefox") (name "firefox")
(version "84.0.2") (version "85.0")
(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 "0dvvpv1am7fx38cazn146p2c2wdi61hy1a48ff4hqxprshcdbgwj")))) (base32 "0l3vgyjhbsjnzgh8zp9g7m6a9kw77vpa6aqxb3j7vrzm88k720sz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:configure-flags `(#:configure-flags
@ -368,7 +368,7 @@
("zlib" ,zlib))) ("zlib" ,zlib)))
(native-inputs (native-inputs
`(("autoconf" ,autoconf-2.13) `(("autoconf" ,autoconf-2.13)
("cargo" ,rust "cargo") ("cargo" ,rust-1.47 "cargo")
("clang" ,clang) ("clang" ,clang)
("llvm" ,llvm) ("llvm" ,llvm)
("m4" ,m4) ("m4" ,m4)
@ -378,7 +378,7 @@
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("python" ,python) ("python" ,python)
("python2" ,python-2.7) ("python2" ,python-2.7)
("rust" ,rust) ("rust" ,rust-1.47)
("rust-cbindgen" ,rust-cbindgen-0.15) ("rust-cbindgen" ,rust-cbindgen-0.15)
("which" ,which) ("which" ,which)
("yasm" ,yasm))) ("yasm" ,yasm)))