diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2023-11-14 12:08:50 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-12-02 17:08:53 +0100 |
commit | 19c9e4df44a734e44bd3fa6bfa0520dd9eb6ba94 (patch) | |
tree | 71dd67835a077c9c6c069b4b2f3957238c1ebfe3 /gnu/packages/gnome.scm | |
parent | e21f0cb7b7a87992004193cd56638ad961fe5928 (diff) | |
download | guix-19c9e4df44a734e44bd3fa6bfa0520dd9eb6ba94.tar guix-19c9e4df44a734e44bd3fa6bfa0520dd9eb6ba94.tar.gz |
gnu: folks: Update to 0.15.6.
* gnu/packages/gnome.scm (folks): Update to 0.15.6.
[#:phase 'skip-gtk-update-icon-cache]: Update for build system change.
Change-Id: I6fd9ab5b4de5cd7fd12d49760b035092109d812c
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d354327497..249bee3e46 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -10643,7 +10643,7 @@ functionality and behavior.") (define-public folks (package (name "folks") - (version "0.15.5") + (version "0.15.6") (source (origin (method url-fetch) (uri (string-append @@ -10652,7 +10652,7 @@ functionality and behavior.") "folks-" version ".tar.xz")) (sha256 (base32 - "11lhfn6b7gml4ckj2dkm6g889j21wpvj90srwjp85k9hcf4qmzqg")))) + "0j02hi6j7rn7qhfmb3abryyad020rdkh59n7w6dwwa9zal666rn8")))) (build-system meson-build-system) (arguments '(#:phases @@ -10660,8 +10660,9 @@ functionality and behavior.") (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"))))))) (inputs (list bdb dbus-glib |