diff options
author | Marius Bakke <marius@gnu.org> | 2022-09-08 22:40:34 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-09 17:03:55 +0200 |
commit | 3767f17b009174d7b95a8e0b064e914b51c868cc (patch) | |
tree | 131e0ffe0d1d26ba03e259abc99dff8232533593 | |
parent | 135ad8988a94bf4ec14a83f20938a95ca7767106 (diff) | |
download | guix-3767f17b009174d7b95a8e0b064e914b51c868cc.tar.gz |
gnu: gjs: Update to 1.73.2.
* gnu/packages/gnome.scm (gjs): Update to 1.73.2. [propagated-inputs]: Change from MOZJS-91 to MOZJS.
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d163b68035..6cde000802 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7211,7 +7211,8 @@ configuration program to choose applications starting on login.") (define-public gjs (package (name "gjs") - (version "1.72.2") + ;; Note: We use a pre-release for compatibility with recent LibFFI. + (version "1.73.2") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -7219,7 +7220,7 @@ configuration program to choose applications starting on login.") name "-" version ".tar.xz")) (sha256 (base32 - "0xrrv9lsi087yb9yf146a1aarf5yh6rf4jw9blx30zasvjdkgvnx")) + "0xfspsc1q4xm7p500lmy17b9csyaqps1kilylq8wjjd0fjqq8ayg")) (modules '((guix build utils))) (snippet '(begin @@ -7250,7 +7251,7 @@ configuration program to choose applications starting on login.") xorg-server-for-tests)) (propagated-inputs ;; These are all in the Requires.private field of gjs-1.0.pc. - (list cairo gobject-introspection mozjs-91)) + (list cairo gobject-introspection mozjs)) (inputs (list gtk+ readline)) (synopsis "Javascript bindings for GNOME") |