mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: mozjs-78: Update to 78.6.1.
* gnu/packages/gnuzilla.scm (mozjs-78): Update to 78.6.1. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
c071984300
commit
9934ea4e8b
1 changed files with 8 additions and 2 deletions
|
@ -421,7 +421,7 @@ (define-public mozjs-60
|
||||||
(define-public mozjs-78
|
(define-public mozjs-78
|
||||||
(package
|
(package
|
||||||
(inherit mozjs-60)
|
(inherit mozjs-60)
|
||||||
(version "78.5.0")
|
(version "78.6.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
;; TODO: Switch to IceCat source once available on ftp.gnu.org.
|
;; TODO: Switch to IceCat source once available on ftp.gnu.org.
|
||||||
|
@ -430,7 +430,7 @@ (define-public mozjs-78
|
||||||
version "esr.source.tar.xz"))
|
version "esr.source.tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1442yjmwz69hkfcvh8kkb60jf4c9ms0pac04nc3xw2da13v4zxai"))))
|
"1kp75838a38x4h0w98qn01g9asn7jlgm64bz7n70353bnr6bf1qd"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:imported-modules ,%cargo-utils-modules ;for `generate-all-checksums'
|
`(#:imported-modules ,%cargo-utils-modules ;for `generate-all-checksums'
|
||||||
#:modules ((guix build cargo-utils)
|
#:modules ((guix build cargo-utils)
|
||||||
|
@ -457,6 +457,12 @@ (define-public mozjs-78
|
||||||
"--with-intl-api")
|
"--with-intl-api")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-StructuredClone.h
|
||||||
|
(lambda _
|
||||||
|
(substitute* "js/public/StructuredClone.h"
|
||||||
|
(("class SharedArrayRawBufferRefs \\{")
|
||||||
|
"class JS_PUBLIC_API SharedArrayRawBufferRefs {"))
|
||||||
|
#t))
|
||||||
(add-after 'patch-source-shebangs 'patch-cargo-checksums
|
(add-after 'patch-source-shebangs 'patch-cargo-checksums
|
||||||
(lambda _
|
(lambda _
|
||||||
(let ((null-hash
|
(let ((null-hash
|
||||||
|
|
Loading…
Reference in a new issue