diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2019-12-17 20:21:38 -0500 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2020-04-18 16:49:56 -0400 |
commit | 262e660ef4b3c4f1dbc2274af6bbc71dfc30b94d (patch) | |
tree | f6c44aeeab34b5c77b687eb89c179db89afbfd1d | |
parent | c576328d77aaecb8fe4c0c2065b72df6471d900b (diff) | |
download | guix-262e660ef4b3c4f1dbc2274af6bbc71dfc30b94d.tar guix-262e660ef4b3c4f1dbc2274af6bbc71dfc30b94d.tar.gz |
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)
-rw-r--r-- | gnu/packages/gnome.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 187fe01ea5..ffd77a68f9 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1321,7 +1321,7 @@ and keep up to date translations of documentation.") (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 @@ and keep up to date translations of documentation.") 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 @@ and keep up to date translations of documentation.") ("libxml2" ,libxml2) ("libxslt" ,libxslt))) (inputs - `(("glib" ,glib) + `(("elogind" ,elogind) + ("glib" ,glib) ("appstream-glib" ,appstream-glib) ("gnome-settings-daemon" ,gnome-settings-daemon) ("gtk+" ,gtk+) |