mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add sushi.
* gnu/packages/gnome.scm (sushi): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
89af09020a
commit
04b201bb0f
1 changed files with 54 additions and 0 deletions
|
@ -582,6 +582,60 @@ (define-public gnome-user-share
|
|||
(home-page "https://gitlab.gnome.org/GNOME/gnome-user-share")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public sushi
|
||||
(package
|
||||
(name "sushi")
|
||||
(version "3.32.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"02idvqjk76lii9xyg3b1yz4rw721709bdm5j8ikjym6amcghl0aj"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:glib-or-gtk? #t
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'glib-or-gtk-wrap 'wrap-typelib
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((prog (string-append (assoc-ref outputs "out")
|
||||
"/bin/sushi")))
|
||||
;; Put existing typelibs before sushi's deps, so as to correctly
|
||||
;; infer gdk-pixbuf
|
||||
(wrap-program prog
|
||||
`("GI_TYPELIB_PATH" suffix (,(getenv "GI_TYPELIB_PATH"))))
|
||||
#t))))))
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin")
|
||||
("gettext" ,gettext-minimal)
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("pkg-config" ,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-3)
|
||||
("harfbuzz" ,harfbuzz)
|
||||
("libepoxy" ,libepoxy)
|
||||
("libmusicbrainz" ,libmusicbrainz)
|
||||
("libxml2" ,libxml2)
|
||||
("neon" ,neon)
|
||||
("webkitgtk" ,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.")
|
||||
(home-page "https://gitlab.gnome.org/GNOME/sushi")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public rygel
|
||||
(package
|
||||
(name "rygel")
|
||||
|
|
Loading…
Reference in a new issue