diff options
author | André Batista <nandre@riseup.net> | 2025-03-08 10:09:50 -0300 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-03-26 10:00:06 +0100 |
commit | 24effa5fc281553a2062f0171cc07ea03db2ecf1 (patch) | |
tree | 2e5cf5924a49fa526e8661590c2c593f4f8126d5 | |
parent | a8fa0ccaa9e35fec4b8c5487bc28c930e00598e1 (diff) | |
download | guix-24effa5fc281553a2062f0171cc07ea03db2ecf1.tar.gz guix-24effa5fc281553a2062f0171cc07ea03db2ecf1.zip |
gnu: mozjs: Remove version 91.
No packages depend on this version anymore.
* gnu/packages/gnuzilla.scm (mozjs-91): Delete variable.
Change-Id: Icc4efd0fc8b3728e4e6c6953fe3266262358d193
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/gnuzilla.scm | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 492e37bbd4..c58af1b2f4 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -272,37 +272,6 @@ in C/C++.") (inputs (modify-inputs (package-inputs mozjs) (replace "icu4c" icu4c-71))))) -(define-public mozjs-91 - (package - (inherit mozjs) - (version "91.13.0") - (source (origin - (method url-fetch) - (uri (string-append "https://ftp.mozilla.org/pub/firefox" - "/releases/" version "esr/source/firefox-" - version "esr.source.tar.xz")) - (sha256 - (base32 - "0qh7j960wdp5zcfqhkj8ki47spp9i9ms12xx0v0kxvmmw36jpgjk")))) - (arguments - (substitute-keyword-arguments (package-arguments mozjs) - ((#:phases phases) - #~(modify-phases #$phases - (add-before 'check 'disable-timezone-tests - (lambda _ - (with-directory-excursion "../js/src/tests" - ;; FIXME: Assertion failed: got "2021a", expected "2021a3"? - (delete-file "non262/Intl/DateTimeFormat/timeZone_version.js") - ;; XXX: Delete all tests that test time zone functionality, - ;; because the test suite uses /etc/localtime to figure out - ;; the offset from the hardware clock, which does not work - ;; in the build container. See <tests/non262/Date/shell.js>. - (delete-file-recursively "non262/Date") - (delete-file - "non262/Intl/DateTimeFormat/tz-environment-variable.js")))))))) - (inputs (modify-inputs (package-inputs mozjs) - (replace "icu4c" icu4c-69))))) - (define-public mozjs-78 (package (inherit mozjs) |