diff options
author | Jonathan Brielmaier <jonathan.brielmaier@web.de> | 2020-05-11 18:16:53 +0200 |
---|---|---|
committer | Guix Patches Tester <> | 2020-05-11 17:20:12 +0100 |
commit | 9c7915f0a4b96ed13a643ba8c2887a16d97dbd26 (patch) | |
tree | 33dd2f948fe5d105593860e877ce5fbf7de095b9 | |
parent | dd70eabeb7067da49bc5f0f4cb3c7d0c13a67920 (diff) | |
download | patches-series-3919.tar patches-series-3919.tar.gz |
gnu: Add chatty.series-3919
* gnu/packages/messaging.scm (chatty): New variable.
-rw-r--r-- | gnu/packages/messaging.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 25bd239d8f..331287fc04 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2198,4 +2198,42 @@ support for high performance Telegram Bot creation.") (home-page "https://source.puri.sm/Librem5/purple-mm-sms") (license license:gpl2+))) +(define-public chatty + (package + (name "chatty") + (version "0.1.10") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://source.puri.sm/Librem5/chatty.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0czvqwjzsb0rvmgrmbh97m1b35rnwl41j7q32z4fcqb7bschibql")))) + (build-system meson-build-system) + (native-inputs + `(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database + ("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("gtk+:bin" ,gtk+ "bin") + ("pkg-config" ,pkg-config))) + (inputs + `(("feedbackd" ,feedbackd) + ("folks" ,folks) + ("libgcrypt" ,libgcrypt) + ("libgee" ,libgee) + ("libhandy" ,libhandy) + ("pidgin" ,pidgin) + ("purple-mm-sms" ,purple-mm-sms) + ("sqlite" ,sqlite))) + (propagated-inputs + `(("adwaita-icon-theme" ,adwaita-icon-theme) + ("evolution-data-server" ,evolution-data-server))) + (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.") + (home-page "https://source.puri.sm/Librem5/chatty") + (license license:gpl3+))) + ;;; messaging.scm ends here |