gnu: gnome-disk-utility: Update to 44.0.
* gnu/packages/gnome.scm (gnome-disk-utility): Update to 44.0. [arguments]: Remove #:meson. Update skip-gtk-update-icon-cache phase. [home-page]: Update URL.
This commit is contained in:
parent
8edec9060f
commit
2f79fd92f4
1 changed files with 10 additions and 6 deletions
|
@ -2331,7 +2331,7 @@ (define-public gnome-desktop
|
||||||
(define-public gnome-disk-utility
|
(define-public gnome-disk-utility
|
||||||
(package
|
(package
|
||||||
(name "gnome-disk-utility")
|
(name "gnome-disk-utility")
|
||||||
(version "42.0")
|
(version "44.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 "/"
|
||||||
|
@ -2339,18 +2339,22 @@ (define-public gnome-disk-utility
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"02q906gn420xbf1f0apazryzqfv5b1ammz1vrci66hk79m2n8r8v"))))
|
"1vx3wyvidjyzr4141p3zrvgx88rp7vwj6n3sf7c3gnvci6bi00q2"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("-Dlogind=libelogind")
|
`(#:configure-flags '("-Dlogind=libelogind")
|
||||||
#:meson ,meson-0.60
|
|
||||||
#:phases
|
#: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'.
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "meson_post_install.py"
|
(substitute* "meson.build"
|
||||||
(("gtk-update-icon-cache") "true")))))))
|
(("gtk_update_icon_cache: true")
|
||||||
|
"gtk_update_icon_cache: false")
|
||||||
|
(("glib_compile_schemas: true")
|
||||||
|
"glib_compile_schemas: false")
|
||||||
|
(("update_desktop_database: true")
|
||||||
|
"update_desktop_database: false")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list docbook-xml
|
(list docbook-xml
|
||||||
docbook-xsl
|
docbook-xsl
|
||||||
|
@ -2372,7 +2376,7 @@ (define-public gnome-disk-utility
|
||||||
libpwquality
|
libpwquality
|
||||||
libsecret
|
libsecret
|
||||||
udisks))
|
udisks))
|
||||||
(home-page "https://git.gnome.org/browse/gnome-disk-utility")
|
(home-page "https://gitlab.gnome.org/GNOME/gnome-disk-utility")
|
||||||
(synopsis "Disk management utility for GNOME")
|
(synopsis "Disk management utility for GNOME")
|
||||||
(description "Disk management utility for GNOME.")
|
(description "Disk management utility for GNOME.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue