diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2020-08-15 13:17:55 -0400 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2020-08-15 13:17:55 -0400 |
commit | 95b90decd3303d691b5c3d305f7cef0c7e60182d (patch) | |
tree | 26a8497c505e4201b9262a15573870c8f228c91f /gnu/packages/gnome.scm | |
parent | d82a5e70c8c92ab0e26b8e45c5230698a0b45075 (diff) | |
download | guix-95b90decd3303d691b5c3d305f7cef0c7e60182d.tar.gz |
gnu: gvfs: Fix build with libplist 2.2.0.
* gnu/packages/gnome.scm (gvfs)[source]: Add patch. * gnu/packages/patches/gvfs-add-support-for-libplist-2.2.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index dffcd697d7..18cb196e22 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5343,7 +5343,10 @@ part of udev-extras, then udev, then systemd. It's now a project on its own.") "gvfs-" version ".tar.xz")) (sha256 (base32 - "1cfnzamr4mvgpf6yhm28lh9cafy9z6842s8jpbqnfizfxybg8ylj")))) + "1cfnzamr4mvgpf6yhm28lh9cafy9z6842s8jpbqnfizfxybg8ylj")) + ;; This patch may be removed when upgrading to version 1.46.x. + (patches + (search-patches "gvfs-add-support-for-libplist-2.2.patch")))) (build-system meson-build-system) (arguments '(#:glib-or-gtk? #t |