diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2022-03-12 11:44:58 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2022-03-12 12:11:08 +0800 |
commit | cce9eb19386063a86a50d9eaf8fac4f70b871435 (patch) | |
tree | c31de30e10f2875311bb3aeb9ba5f05c2eda11cf | |
parent | d41c82b481fd0f5c7d45d6e2629fdf9d2085205b (diff) | |
download | guix-cce9eb19386063a86a50d9eaf8fac4f70b871435.tar.gz |
gnu: eog: Wrap with gsettings schemas.
* gnu/packages/gnome.scm (eog)[arguments]: Add #:glib-or-gtk? #t.
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 381ea04ea0..212862a515 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6424,7 +6424,8 @@ supports playlists, song ratings, and any codecs installed through gstreamer.") (patches (search-patches "eog-update-libportal-usage.patch")))) (build-system meson-build-system) (arguments - `(#:configure-flags + `(#:glib-or-gtk? #t + #:configure-flags ;; Otherwise, the RUNPATH will lack the final 'eog' path component. (list (string-append "-Dc_link_args=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib/eog")) |