diff options
author | Herman Rimm <herman@rimm.ee> | 2024-03-15 19:34:21 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-03-23 05:16:31 +0100 |
commit | f7ba5df8b092d2e8d227c07b94676532b066bac9 (patch) | |
tree | 337773836914658fd3c7b4ccdc3fbea2ba0cdb8a | |
parent | 5b26305e0ea63ff0291d48588968e7ba6a6d2eda (diff) | |
download | guix-f7ba5df8b092d2e8d227c07b94676532b066bac9.tar guix-f7ba5df8b092d2e8d227c07b94676532b066bac9.tar.gz |
gnu: seahorse: Update to 43.0.
* gnu/packages/gnome.scm (seahorse): Update.
Change-Id: I13ce7c9e2cfb7c0b8d575148a502d81ddf30d13d
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/gnome.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 5e7c0e93df..1e7a125e6b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4434,7 +4434,7 @@ engineering.") (define-public seahorse (package (name "seahorse") - (version "42.0") + (version "43.0") (source (origin (method url-fetch) @@ -4442,7 +4442,7 @@ engineering.") (version-major version) "/" name "-" version ".tar.xz")) (sha256 - (base32 "0c6nafhn4gcjwd1xbs5bjq9785114fc0pbhxbwp7wynyz3msq365")))) + (base32 "0bc3xbjzwa4245m6nqzl3v6hzp9hyfbf50iwgwi5hdjglzxin7av")))) (build-system meson-build-system) (arguments '(#:glib-or-gtk? #t @@ -4451,8 +4451,11 @@ engineering.") (add-after 'unpack 'skip-gtk-update-icon-cache ;; Don't create 'icon-theme.cache'. (lambda _ - (substitute* "build-aux/meson_post_install.py" - (("gtk-update-icon-cache") "true")))) + (substitute* "meson.build" + (("gtk_update_icon_cache: true") + "gtk_update_icon_cache: false") + (("update_desktop_database: true") + "update_desktop_database: false")))) (add-before 'check 'pre-check (lambda _ ;; Tests require a writable HOME. @@ -4468,7 +4471,7 @@ engineering.") libhandy libpwquality libsecret - libsoup-minimal-2)) + libsoup-minimal)) (native-inputs (list gettext-minimal `(,glib "bin") |