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

View file

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