gnu: gnome-disk-utility: Update to 3.34.0.

* gnu/packages/gnome.scm (gnome-disk-utility): Update to 3.34.0.
[arguments]: Add configure flag to enable elogind support.
[inputs]: Add elogind.

(cherry picked from commit 586eb32f09e8a654272040b578bf6a99876c9f7d)
This commit is contained in:
Kei Kebreau 2019-12-17 20:21:38 -05:00
parent c576328d77
commit 262e660ef4
No known key found for this signature in database
GPG key ID: E6A5EE3C19467A0D

View file

@ -1321,7 +1321,7 @@ (define-public gnome-doc-utils
(define-public gnome-disk-utility
(package
(name "gnome-disk-utility")
(version "3.32.1")
(version "3.34.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@ -1329,10 +1329,11 @@ (define-public gnome-disk-utility
name "-" version ".tar.xz"))
(sha256
(base32
"08vwbji9m1nhjjdiyhhaqi8cncys7i89b4bpy095f8475v8y05bg"))))
"1mb7q90lnlp97dhxhnadhjagcfd12dfqzp0vj9h6b1r61pzhy97y"))))
(build-system meson-build-system)
(arguments
'(#:phases
'(#:configure-flags '("-Dlogind=libelogind")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'skip-gtk-update-icon-cache
;; Don't create 'icon-theme.cache'.
@ -1349,7 +1350,8 @@ (define-public gnome-disk-utility
("libxml2" ,libxml2)
("libxslt" ,libxslt)))
(inputs
`(("glib" ,glib)
`(("elogind" ,elogind)
("glib" ,glib)
("appstream-glib" ,appstream-glib)
("gnome-settings-daemon" ,gnome-settings-daemon)
("gtk+" ,gtk+)