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)master
parent
c576328d77
commit
262e660ef4
|
@ -1321,7 +1321,7 @@ and keep up to date translations of documentation.")
|
||||||
(define-public gnome-disk-utility
|
(define-public gnome-disk-utility
|
||||||
(package
|
(package
|
||||||
(name "gnome-disk-utility")
|
(name "gnome-disk-utility")
|
||||||
(version "3.32.1")
|
(version "3.34.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -1329,10 +1329,11 @@ and keep up to date translations of documentation.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08vwbji9m1nhjjdiyhhaqi8cncys7i89b4bpy095f8475v8y05bg"))))
|
"1mb7q90lnlp97dhxhnadhjagcfd12dfqzp0vj9h6b1r61pzhy97y"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:configure-flags '("-Dlogind=libelogind")
|
||||||
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'skip-gtk-update-icon-cache
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
;; Don't create 'icon-theme.cache'.
|
;; Don't create 'icon-theme.cache'.
|
||||||
|
@ -1349,7 +1350,8 @@ and keep up to date translations of documentation.")
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
("libxslt" ,libxslt)))
|
("libxslt" ,libxslt)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("glib" ,glib)
|
`(("elogind" ,elogind)
|
||||||
|
("glib" ,glib)
|
||||||
("appstream-glib" ,appstream-glib)
|
("appstream-glib" ,appstream-glib)
|
||||||
("gnome-settings-daemon" ,gnome-settings-daemon)
|
("gnome-settings-daemon" ,gnome-settings-daemon)
|
||||||
("gtk+" ,gtk+)
|
("gtk+" ,gtk+)
|
||||||
|
|
Reference in New Issue