From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 53829@debbugs.gnu.org
Cc: jgart <jgart@dismail.de>
Subject: [bug#53829] [PATCH] gnu: Add jj.
Date: Sun, 6 Feb 2022 16:50:22 -0500 [thread overview]
Message-ID: <20220206215022.3062-1-jgart@dismail.de> (raw)
* gnu/packages/messaging.scm (jj): New variable.
---
gnu/packages/messaging.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 768642f119..d2735f9d96 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3118,6 +3118,43 @@ (define-public matterbridge
(home-page "https://github.com/42wim/matterbridge")
(license license:asl2.0)))
+(define-public jj
+ (package
+ (name "jj")
+ (version "2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://23.fi/jj/jj-" version ".tar.gz"))
+ (sha256
+ (base32 "02xz2ci93bccvil5iff804mh3zr5iqkf6zx5mxgraz17xg0azlgh"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; There are no tests.
+ #:make-flags
+ (list (string-append "CC=" ,(cc-for-target))
+ (string-append "PREFIX=" %output))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin")))
+ (install-file "jj" bin)))))))
+ (native-inputs
+ (list pkg-config))
+ (inputs
+ (list glib loudmouth))
+ (home-page "https://23.fi/jj/")
+ (synopsis "FIFO based Jabber client")
+ (description
+"@command{jj} is a simple FIFO and filesystem based Jabber
+client. @code{jj} is inspired by @code{ii} IRC client. It is perfect
+for bots and notifications. Interaction with jj is done by writing and
+reading files from the server directory which jj creates.")
+ (license license:expat)))
+
(define-public pounce
(package
(name "pounce")
--
2.35.0
next reply other threads:[~2022-02-06 21:51 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-06 21:50 jgart via Guix-patches via [this message]
2022-02-06 22:10 ` [bug#53829] [PATCH] gnu: Add jj Maxime Devos
2022-02-07 1:20 ` jgart via Guix-patches via
2022-02-07 9:56 ` Maxime Devos
2022-02-07 15:30 ` jgart via Guix-patches via
2022-02-07 2:27 ` [bug#53829] [PATCH v2] " jgart via Guix-patches via
2022-03-03 22:44 ` bug#53829: [PATCH] " Ludovic Courtès
2022-03-04 0:21 ` [bug#53829] " 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=20220206215022.3062-1-jgart@dismail.de \
--to=guix-patches@gnu.org \
--cc=53829@debbugs.gnu.org \
--cc=jgart@dismail.de \
/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).