diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-05 17:43:54 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-05 17:52:28 +0100 |
commit | 6cb47c374469f7c26775520540e1ed79a8bff674 (patch) | |
tree | 914101e884ec580ad52e2da4974f302981052762 | |
parent | 67a535351f8678969e412e8dba9197a883b524d0 (diff) | |
download | guix-6cb47c374469f7c26775520540e1ed79a8bff674.tar.gz guix-6cb47c374469f7c26775520540e1ed79a8bff674.zip |
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
-rw-r--r-- | gnu/packages/sugar.scm | 7 |
1 files changed, 7 insertions, 0 deletions
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 |