diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-11 23:12:16 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-20 13:27:16 +0100 |
| commit | 1ae20f03f43a2af2bcde3751a2809fe152298d34 (patch) | |
| tree | be11f116044ab4cbc7994e2cf88ded0e21db4bbc /gnu/packages/webkit.scm | |
| parent | 4ba653e637940b147ea5cdcf45397b8ac7f3d014 (diff) | |
gnu: Reference the inherited inputs values.
This commit was made by running this command:
sed -e's/modify-inputs (package-\([a-z-]*\)inputs [a-zA-Z0-9-]\+)/modify-inputs \1inputs/g' -i gnu/packages/*.scm
… and then reverting individual hunks where the change would trigger unbound
variable warnings or other issues (such as ‘native-inputs’ is bound in the
body of the ‘inputs’ field, but it refers to the ‘native-inputs’ thunk defined
just above).
Change-Id: I6d94819f2809313fa1fbefc61897502ee7d66fab
Diffstat (limited to 'gnu/packages/webkit.scm')
| -rw-r--r-- | gnu/packages/webkit.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index 2455bf89681..630dd384365 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -308,10 +308,10 @@ propagated by default) such as @code{gst-plugins-good} and #~(cons* "-DUSE_GTK4=OFF" (delete "-DUSE_GTK4=ON" #$flags))))) (propagated-inputs - (modify-inputs (package-propagated-inputs webkitgtk) + (modify-inputs propagated-inputs (replace "gtk" gtk+))) (inputs - (modify-inputs (package-inputs webkitgtk) + (modify-inputs inputs (prepend libnotify))))) ;;; Required by e.g. emacs-next-pgtk, emacs-xwidgets, and some other GNOME @@ -324,7 +324,7 @@ propagated by default) such as @code{gst-plugins-good} and ((#:configure-flags flags) #~(cons "-DUSE_SOUP2=ON" #$flags)))) (propagated-inputs - (modify-inputs (package-propagated-inputs webkitgtk-for-gtk3) + (modify-inputs propagated-inputs (replace "libsoup" libsoup-minimal-2))))) (define-public wpewebkit @@ -343,7 +343,7 @@ propagated by default) such as @code{gst-plugins-good} and ((#:configure-flags flags) #~(cons "-DPORT=WPE" (delete "-DPORT=GTK" #$flags))))) - (inputs (modify-inputs (package-inputs webkitgtk) + (inputs (modify-inputs inputs (prepend libinput))) (synopsis "WebKit port optimized for embedded devices") (description "WPE WebKit allows embedders to create simple and performant |
