gnu: sushi: Use new style inputs.

* gnu/packages/gnome.scm (sushi)[native-inputs, inputs]: Use new style.
This commit is contained in:
Maxim Cournoyer 2022-07-12 11:52:58 -04:00
parent ef82f34482
commit 0fc3d5a6d4
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 20 additions and 20 deletions

View File

@ -1608,27 +1608,27 @@ sharing to the masses.")
`("GI_TYPELIB_PATH" suffix
(,(getenv "GI_TYPELIB_PATH"))))))))))
(native-inputs
`(("glib:bin" ,glib "bin")
("gettext" ,gettext-minimal)
("gobject-introspection" ,gobject-introspection)
("pkg-config" ,pkg-config)))
(list `(,glib "bin")
gettext-minimal
gobject-introspection
pkg-config))
(inputs
`(("clutter" ,clutter)
("clutter-gst" ,clutter-gst)
("clutter-gtk" ,clutter-gtk)
("evince" ,evince) ; For file previewing.
("freetype" ,freetype)
("gdk-pixbuf" ,gdk-pixbuf)
("gjs" ,gjs)
("gst-plugins-base" ,gst-plugins-base)
("gstreamer" ,gstreamer)
("gtksourceview" ,gtksourceview)
("harfbuzz" ,harfbuzz)
("libepoxy" ,libepoxy)
("libmusicbrainz" ,libmusicbrainz)
("libxml2" ,libxml2)
("neon" ,neon)
("webkitgtk" ,webkitgtk)))
(list clutter
clutter-gst
clutter-gtk
evince ; For file previewing.
freetype
gdk-pixbuf
gjs
gst-plugins-base
gstreamer
gtksourceview
harfbuzz
libepoxy
libmusicbrainz
libxml2
neon
webkitgtk))
(synopsis "File previewer for the GNOME desktop")
(description "Sushi is a DBus-activated service that allows applications
to preview files on the GNOME desktop.")