This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6cb47c3744 gnu: sugar-help-activity: Add missing input.
6cb47c3744 is described below

commit 6cb47c374469f7c26775520540e1ed79a8bff674
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Sun Jan 5 17:43:54 2025 +0100

    gnu: sugar-help-activity: Add missing input.
    
    * gnu/packages/sugar.scm (sugar-help-activity)[propagated-inputs]: Add
    webkitgtk-for-gtk3.
    [arguments]: Patch to use WebKit2 4.1 instead of 4.0 in new phase
    'use-newer-webkit.
    
    Change-Id: I513970830ac6c5c0b8026a7d015604b8dc8bff9b
---
 gnu/packages/sugar.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/sugar.scm b/gnu/packages/sugar.scm
index 51f80a58d3..42b2e9694a 100644
--- a/gnu/packages/sugar.scm
+++ b/gnu/packages/sugar.scm
@@ -755,6 +755,11 @@ things to enhance your use of the Journal.")
         #:test-target "check"
         #:phases
         #~(modify-phases %standard-phases
+            (add-after 'unpack 'use-newer-webkit
+              (lambda _
+                (substitute* "helpactivity.py"
+                  (("'WebKit2', '4.0'")
+                   "'WebKit2', '4.1'"))))
             (add-after 'unpack 'patch-launcher
               (lambda* (#:key inputs #:allow-other-keys)
                 (substitute* "activity/activity.info"
@@ -770,6 +775,8 @@ things to enhance your use of the Journal.")
       (native-inputs
        (list sugar-toolkit-gtk3
              python-sphinx))
+      (propagated-inputs
+       (list webkitgtk-for-gtk3))
       (home-page "https://github.com/sugarlabs/help-activity";)
       (synopsis "Sugar activity for accessing documentation and manuals")
       (description "This is an activity for the Sugar environment which aims

Reply via email to