mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 19:11:43 -05:00
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
|
||||
(package
|
||||
(name "gnome-disk-utility")
|
||||
(version "42.0")
|
||||
(version "44.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
|
@ -2339,18 +2339,22 @@ (define-public gnome-disk-utility
|
|||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"02q906gn420xbf1f0apazryzqfv5b1ammz1vrci66hk79m2n8r8v"))))
|
||||
"1vx3wyvidjyzr4141p3zrvgx88rp7vwj6n3sf7c3gnvci6bi00q2"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags '("-Dlogind=libelogind")
|
||||
#:meson ,meson-0.60
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||
;; Don't create 'icon-theme.cache'.
|
||||
(lambda _
|
||||
(substitute* "meson_post_install.py"
|
||||
(("gtk-update-icon-cache") "true")))))))
|
||||
(substitute* "meson.build"
|
||||
(("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
|
||||
(list docbook-xml
|
||||
docbook-xsl
|
||||
|
@ -2372,7 +2376,7 @@ (define-public gnome-disk-utility
|
|||
libpwquality
|
||||
libsecret
|
||||
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")
|
||||
(description "Disk management utility for GNOME.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue