diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-01-04 21:40:46 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-01-04 21:40:46 +0100 |
commit | 658c09333da095edf6e1b3c5e351a7bfa3c87354 (patch) | |
tree | 0c13cddd7d386863d2fbc55d514ffea34f298f04 /gnu/packages/kodi.scm | |
parent | 5f83dd03a2fd13e235ff7cd36add0b84619fa1e9 (diff) | |
download | guix-658c09333da095edf6e1b3c5e351a7bfa3c87354.tar.gz |
gnu: kodi/wayland: Fix syntax error.
This is a follow-up to commit dbd9305a5682b1c5cd0b2a516b09f1f3af47209d. Fixes the cuirass evaluation problems reported and investigated by Leo Famulari. * gnu/packages/kodi.scm (kodi/wayland)[inputs]: Do not wrap arguments to "prepend" in "list".
Diffstat (limited to 'gnu/packages/kodi.scm')
-rw-r--r-- | gnu/packages/kodi.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/kodi.scm b/gnu/packages/kodi.scm index a0f1ad7dca..ed80d0662f 100644 --- a/gnu/packages/kodi.scm +++ b/gnu/packages/kodi.scm @@ -489,10 +489,10 @@ plug-in system.") (delete "-DCORE_PLATFORM_NAME=x11" ,flags))))) (inputs (modify-inputs (package-inputs kodi) - (prepend (list libinput - libxkbcommon - waylandpp - wayland-protocols)))) + (prepend libinput + libxkbcommon + waylandpp + wayland-protocols))) (synopsis "Kodi with Wayland rendering backend"))) (define-public kodi-cli |