unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: southerntofu via Guix-patches via <guix-patches@gnu.org>
To: 49451@debbugs.gnu.org
Subject: [bug#49451] [PATCH 19/20] gnu: Add aparte
Date: Sun, 11 Jul 2021 17:31:50 -0400	[thread overview]
Message-ID: <YOtjRnX66Ki9WSRu@thunix.net> (raw)
In-Reply-To: <YOS6GMXJLemJzwIQ@thunix.net>

---
 gnu/packages/messaging.scm | 59 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 22e1c370aa..6bfee2e15e 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -60,6 +60,7 @@
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cpp)
+  #:use-module (gnu packages crates-io)
   #:use-module (gnu packages crypto)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages cyrus-sasl)
@@ -123,6 +124,7 @@
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
+  #:use-module (guix build-system cargo)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system go)
   #:use-module (guix build-system glib-or-gtk)
@@ -3016,4 +3018,61 @@ API.  Mattermost is not required.")
     (home-page "https://github.com/42wim/matterbridge")
     (license license:asl2.0)))
 
+(define-public aparte
+  (package
+    (name "aparte")
+    (version "0.2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "aparte" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:cargo-inputs
+        (("rust-backtrace" ,rust-backtrace-0.3)
+         ("rust-bytes" ,rust-bytes-0.5)
+         ("rust-chrono" ,rust-chrono-0.4)
+         ("rust-derive-error" ,rust-derive-error-0.0.4)
+         ("rust-dirs" ,rust-dirs-2)
+         ("rust-flexi-logger" ,rust-flexi-logger-0.15)
+         ("rust-futures" ,rust-futures-0.3)
+         ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
+         ("rust-hsluv" ,rust-hsluv-0.1)
+         ("rust-linked-hash-map"
+          ,rust-linked-hash-map-0.5)
+         ("rust-linked-hash-set"
+          ,rust-linked-hash-set-0.1)
+         ("rust-log" ,rust-log-0.4)
+         ("rust-rand" ,rust-rand-0.8)
+         ("rust-rpassword" ,rust-rpassword-3)
+         ("rust-rust-crypto" ,rust-rust-crypto-0.2)
+         ("rust-serde" ,rust-serde-1)
+         ("rust-termion" ,rust-termion-1)
+         ("rust-textwrap" ,rust-textwrap-0.12)
+         ("rust-tokio" ,rust-tokio-1)
+         ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
+         ("rust-toml" ,rust-toml-0.5)
+         ("rust-unicode-segmentation"
+          ,rust-unicode-segmentation-1)
+         ("rust-uuid" ,rust-uuid-0.7)
+         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
+        #:cargo-development-inputs
+        (("rust-mockall" ,rust-mockall-0.9))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("openssl" ,openssl)))
+    (home-page
+      "https://github.com/paulfariello/aparte")
+    (synopsis
+      "Simple XMPP console client written in Rust and inspired by Profanity")
+    (description
+      "Simple XMPP console client written in Rust and inspired by Profanity")
+    (license license:mpl2.0)))
+
 ;;; messaging.scm ends here
-- 
2.30.2





  parent reply	other threads:[~2021-07-12  4:36 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
2021-07-11 21:26 ` [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9 southerntofu via Guix-patches via
2021-08-01 10:08   ` Xinglu Chen
2021-07-11 21:28 ` [bug#49451] [PATCH 02/20] gnu: Add rust-case southerntofu via Guix-patches via
2021-07-11 21:28 ` [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error southerntofu via Guix-patches via
2021-08-01 10:10   ` Xinglu Chen
2021-07-11 21:28 ` [bug#49451] [PATCH 04/20] gnu: Add rust-downcast southerntofu via Guix-patches via
2021-08-01 10:10   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger southerntofu via Guix-patches via
2021-08-01 10:12   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0 southerntofu via Guix-patches via
2021-08-01 10:13   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10 southerntofu via Guix-patches via
2021-08-01 10:14   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv southerntofu via Guix-patches via
2021-08-01 10:15   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 09/20] gnu: Add rust-minidom southerntofu via Guix-patches via
2021-08-01 10:16   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set southerntofu via Guix-patches via
2021-08-01 10:16   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6 southerntofu via Guix-patches via
2021-08-01 10:17   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 12/20] gnu: Add rust-sha3 southerntofu via Guix-patches via
2021-08-01 10:18   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive southerntofu via Guix-patches via
2021-08-01 10:19   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 14/20] gnu: Add rust-mockall southerntofu via Guix-patches via
2021-08-01 10:20   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 15/20] gnu: Add rust-sasl southerntofu via Guix-patches via
2021-08-01 10:22   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 16/20] gnu: Add rust-jid southerntofu via Guix-patches via
2021-08-01 10:23   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers southerntofu via Guix-patches via
2021-08-01 10:24   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp southerntofu via Guix-patches via
2021-08-01 10:24   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added southerntofu via Guix-patches via
2021-08-01 10:28   ` Xinglu Chen
2021-07-11 21:31 ` southerntofu via Guix-patches via [this message]
2021-08-01 10:29   ` [bug#49451] [PATCH 19/20] gnu: Add aparte Xinglu Chen
2021-08-01 10:42 ` [bug#49451] Adding package aparte (rust XMPP TUI client) Xinglu Chen
2021-08-31 15:31 ` [bug#49451] aparte on GuixRUS jgart via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YOtjRnX66Ki9WSRu@thunix.net \
    --to=guix-patches@gnu.org \
    --cc=49451@debbugs.gnu.org \
    --cc=southerntofu@thunix.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).