apteryx pushed a commit to branch core-updates-frozen
in repository guix.
commit 18dd5e45e4b9d7c66f386119e6578bf8b0555f63
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sat Oct 30 23:35:58 2021 -0400
gnu: jami-gnome: Fix build with webkitgtk 2.34.1.
* gnu/packages/jami.scm (jami-gnome)[phases]{fix-webkit-detection}: New
phase.
---
gnu/packages/jami.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm
index 5cb9284..7c38b17 100644
--- a/gnu/packages/jami.scm
+++ b/gnu/packages/jami.scm
@@ -546,6 +546,11 @@ decentralized calling using P2P-DHT.")
(add-after 'unpack 'change-directory
(lambda _
(chdir "client-gnome")))
+ (add-after 'change-directory 'fix-webkit-detection
+ (lambda _
+ (substitute* "CMakeLists.txt"
+ (("WEBKIT webkit2gtk-4.0")
+ "WEBKIT webkit2gtk-4.1"))))
(add-after 'install 'glib-or-gtk-compile-schemas
(assoc-ref gtk:%standard-phases 'glib-or-gtk-compile-schemas))
(add-after 'glib-or-gtk-compile-schemas 'glib-or-gtk-wrap