diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-12 00:17:19 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-13 02:04:58 -0400 |
commit | b659d8fafa3697859770fed4a4b7600def057eda (patch) | |
tree | 17e453a477fb0a812c0bdc43b347b91d5ed2356c | |
parent | e1ae27e712f54283df614e709c68bc8f2c271068 (diff) | |
download | guix-b659d8fafa3697859770fed4a4b7600def057eda.tar.gz |
gnu: chatty: Fix build.
* gnu/packages/messaging.scm (chatty) [#:glib-or-gtk?]: New argument. [inputs]: Replace folks with folks-with-libsoup2. [propagated-inputs]: Replace evolution-data-server with evolution-data-server-3.44.
-rw-r--r-- | gnu/packages/messaging.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 0c327c7e18..f0814bf28a 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2825,7 +2825,8 @@ validating international phone numbers.") "11q07vjrrjf3k00kk41vm79brpq0qigz7l328br3g0li979kz32v")))) (build-system meson-build-system) (arguments - '(#:phases + '(#:glib-or-gtk? #t + #:phases (modify-phases %standard-phases (add-after 'unpack 'skip-updating-desktop-database (lambda _ @@ -2847,7 +2848,7 @@ validating international phone numbers.") xorg-server-for-tests)) (inputs (list feedbackd - folks + folks-with-libsoup2 gnome-desktop gsettings-desktop-schemas gspell @@ -2862,7 +2863,7 @@ validating international phone numbers.") purple-mm-sms sqlite)) (propagated-inputs - (list adwaita-icon-theme evolution-data-server)) + (list adwaita-icon-theme evolution-data-server-3.44)) (synopsis "Mobile client for XMPP and SMS messaging") (description "Chatty is a chat program for XMPP and SMS. It works on mobile as well as on desktop platforms. It's based on libpurple and ModemManager.") |