gnu: rygel: Update to 0.40.1.
* gnu/packages/gnome.scm (rygel): Update to 0.40.1. [build-system]: Switch to meson. [arguments]<#:configure-flags>: Pass a plugins list to exclude the tracker plugin. [native-inputs]: Add glib:bin, docbook-xml, docbook-xsl, xsltproc. [inputs]: Add gst-editing-services and json-glib.master
parent
54b8cdfe3c
commit
b7a5641ad7
|
@ -1612,7 +1612,7 @@ preview files on the GNOME desktop.")
|
||||||
(define-public rygel
|
(define-public rygel
|
||||||
(package
|
(package
|
||||||
(name "rygel")
|
(name "rygel")
|
||||||
(version "0.38.3")
|
(version "0.40.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -1620,23 +1620,34 @@ preview files on the GNOME desktop.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"003xficqb08r1dgid20i7cn889lbfwrglpx78rjd5nkvgxbimhh8"))))
|
"0bd3d2swa8lq47b9r04x8xwdr9nhjnrwqi6scygd134wb5vxfh22"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
;; Disable the tracker plugin.
|
||||||
|
'(#:configure-flags
|
||||||
|
(list "-Dplugins=external,gst-launch,lms,media-export,
|
||||||
|
mpris,playbin,ruih,tracker3")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
`(("gettext" ,gettext-minimal)
|
||||||
|
("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc.
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("gtk-doc" ,gtk-doc/stable)
|
("gtk-doc" ,gtk-doc/stable)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("vala" ,vala)))
|
("vala" ,vala)
|
||||||
|
("docbook-xml" ,docbook-xml)
|
||||||
|
("dockbook-xsl" ,docbook-xsl)
|
||||||
|
("xsltproc" ,libxslt)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gdk-pixbuf" ,gdk-pixbuf)
|
`(("gdk-pixbuf" ,gdk-pixbuf)
|
||||||
("gssdp" ,gssdp)
|
("gssdp" ,gssdp)
|
||||||
("gstreamer" ,gstreamer)
|
("gstreamer" ,gstreamer)
|
||||||
("gst-plugins-base" ,gst-plugins-base)
|
("gst-plugins-base" ,gst-plugins-base)
|
||||||
|
("gst-editing-services" ,gst-editing-services)
|
||||||
("gtk+" ,gtk+)
|
("gtk+" ,gtk+)
|
||||||
("gupnp" ,gupnp)
|
("gupnp" ,gupnp)
|
||||||
("gupnp-av" ,gupnp-av)
|
("gupnp-av" ,gupnp-av)
|
||||||
("gupnp-dlna" ,gupnp-dlna)
|
("gupnp-dlna" ,gupnp-dlna)
|
||||||
|
("json-glib" ,json-glib)
|
||||||
("libgee" ,libgee)
|
("libgee" ,libgee)
|
||||||
("libmediaart" ,libmediaart)
|
("libmediaart" ,libmediaart)
|
||||||
("libsoup" ,libsoup)
|
("libsoup" ,libsoup)
|
||||||
|
|
Reference in New Issue