gnu: baobab: Update to 44.0.
* gnu/packages/gnome.scm (baobab): Update to 44.0. [arguments]: Add ‘skip-gtk-update-icon-cache’ phase. [native-inputs]: Remove gtk+:bin. [inputs]: Remove libhandy.
This commit is contained in:
parent
f1c70ac025
commit
f29be169fb
1 changed files with 12 additions and 8 deletions
|
@ -9693,7 +9693,7 @@ files.")
|
||||||
(define-public baobab
|
(define-public baobab
|
||||||
(package
|
(package
|
||||||
(name "baobab")
|
(name "baobab")
|
||||||
(version "42.0")
|
(version "44.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -9702,24 +9702,28 @@ files.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1p2hg8qxbvdfax9z4qjhdsxia93zrsdq58krx8zjnn5ipbkan6jb"))))
|
"1h5zl7pvpp8yryi7j0cjzy1k89vlphdmfv0jr1l4bmr3j6xn6nw4"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:glib-or-gtk? #t))
|
'(#:glib-or-gtk? #t
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
|
;; Don't create 'icon-theme.cache'.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "meson.build"
|
||||||
|
(("gtk_update_icon_cache: true")
|
||||||
|
"gtk_update_icon_cache: false")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list desktop-file-utils ;for update-desktop-database
|
(list desktop-file-utils ;for update-desktop-database
|
||||||
gettext-minimal
|
gettext-minimal
|
||||||
`(,glib "bin")
|
`(,glib "bin")
|
||||||
`(,gtk+ "bin") ;for gtk-update-icon-cache
|
|
||||||
itstool
|
itstool
|
||||||
libxml2
|
libxml2
|
||||||
pkg-config
|
pkg-config
|
||||||
python
|
python
|
||||||
vala))
|
vala))
|
||||||
(inputs
|
(inputs (list gtk libadwaita))
|
||||||
(list gtk
|
|
||||||
libadwaita
|
|
||||||
libhandy))
|
|
||||||
(synopsis "Disk usage analyzer for GNOME")
|
(synopsis "Disk usage analyzer for GNOME")
|
||||||
(description
|
(description
|
||||||
"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk
|
"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk
|
||||||
|
|
Reference in a new issue