diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2024-03-23 09:29:29 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-03-24 09:58:18 +0000 |
commit | beec25533869437b95735965ac130ea5f59f5aa0 (patch) | |
tree | 83a2f753255392f7812a2ac7fe477e09ff8f9394 /gnu | |
parent | f7ba5df8b092d2e8d227c07b94676532b066bac9 (diff) | |
download | guix-beec25533869437b95735965ac130ea5f59f5aa0.tar guix-beec25533869437b95735965ac130ea5f59f5aa0.tar.gz |
gnu: shotwell: Update to 0.32.6.
* gnu/packages/gnome.scm (shotwell): Update to 0.32.6.
[arguments]: Convert to list of G-Expressions.
[#:phase 'skip-gtk-update-icon-cache]: Adjust to build system change.
[inputs]: Add libportal.
Change-Id: I5167d13d8514e278732459d1705f0041e3797894
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1e7a125e6b..42f758f8d8 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7567,7 +7567,7 @@ metadata in photo and video files of various formats.") (define-public shotwell (package (name "shotwell") - (version "0.31.5") + (version "0.32.6") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/shotwell/" @@ -7575,17 +7575,20 @@ metadata in photo and video files of various formats.") "shotwell-" version ".tar.xz")) (sha256 (base32 - "06awlix23y1cd89n6v9vip48cg08fjq8v6zaw38k5clrrv38y11v")))) + "1dkh5bczf9k86akl70inpc2z98qkhg8g44jb2kc8rqcimkzs95vm")))) (build-system meson-build-system) (arguments - '(#:glib-or-gtk? #t - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'skip-gtk-update-icon-cache - (lambda _ - (substitute* "build-aux/meson/postinstall.py" - (("gtk-update-icon-cache") (which "true")) - (("update-desktop-database") (which "true")))))))) + (list + #:glib-or-gtk? #t + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'skip-gtk-update-icon-cache + (lambda _ + (substitute* "meson.build" + (("gtk_update_icon_cache: true") + "gtk_update_icon_cache: false") + (("update_desktop_database: true") + "update_desktop_database: false"))))))) (propagated-inputs (list dconf)) (native-inputs @@ -7601,6 +7604,7 @@ metadata in photo and video files of various formats.") gst-plugins-base gstreamer json-glib + libportal libgdata libgee libgphoto2 |