diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-20 08:21:19 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-20 08:23:39 +0200 |
commit | 1b3d824482b6c8ebbc7c17a83d6b584ec71cf787 (patch) | |
tree | b445e7070928d1d74d043785e81e63811af0ec3b | |
parent | e1bfd5536891d1e678125259f3639976041a95b8 (diff) |
gnu: gnome-online-accounts: Update to 3.48.0.
* gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.48.0.
[arguments]: Adjust ‘disable-gtk-update-icon-cache’ accordingly.
Move it after unpack.
-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 d718764dfc..1c4d3f29a0 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7949,7 +7949,7 @@ window manager.") (define-public gnome-online-accounts (package (name "gnome-online-accounts") - (version "3.45.2") + (version "3.48.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -7957,16 +7957,18 @@ window manager.") name "-" version ".tar.xz")) (sha256 (base32 - "15zzzndbfba8a497vxb6cmy1y22l3lfn4sx9s9r59kwzd83i6fxn")))) + "1gvmc4k5vm4qd97yfkd5a4sixz0pfq9nblss42c2mmyvzzybk2s1")))) (build-system meson-build-system) (arguments (list #:glib-or-gtk? #t #:phases #~(modify-phases %standard-phases - (add-before 'install 'disable-gtk-update-icon-cache + (add-after 'unpack 'disable-gtk-update-icon-cache (lambda _ - (setenv "DESTDIR" "/")))))) + (substitute* "meson.build" + (("gtk_update_icon_cache: true") + "gtk_update_icon_cache: false"))))))) (native-inputs (list gettext-minimal `(,glib "bin") ; for glib-compile-schemas, etc. |