[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/08: gnu: Add jj.
From: |
guix-commits |
Subject: |
06/08: gnu: Add jj. |
Date: |
Thu, 3 Mar 2022 18:00:21 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 17c3bc1955561411534fd3ce3a00b490ad166cc2
Author: jgart <jgart@dismail.de>
AuthorDate: Sun Feb 6 21:27:53 2022 -0500
gnu: Add jj.
* gnu/packages/messaging.scm (jj): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/messaging.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 3402a63acc..1d0c36cf23 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3133,6 +3133,41 @@ API. Mattermost is not required.")
(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
+ (list #: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
+ "jj is a simple file-system-based Jabber client, inspired by ii IRC
+client. Interaction with jj is done by writing and reading files from the
+server directory which jj creates. It is perfect for bots and
+notifications.")
+ (license license:expat)))
+
(define-public pounce
(package
(name "pounce")
- branch master updated (137a5bc71d -> d93bb18386), guix-commits, 2022/03/03
- 07/08: gnu: Add emacs-spell-fu., guix-commits, 2022/03/03
- 05/08: services: openvpn: Actually save log file., guix-commits, 2022/03/03
- 01/08: download: Remove obsolete bit from docstring., guix-commits, 2022/03/03
- 03/08: download: Fix typo in procedure name., guix-commits, 2022/03/03
- 06/08: gnu: Add jj.,
guix-commits <=
- 02/08: download: Load X.509 certificates only once., guix-commits, 2022/03/03
- 04/08: gnu: Add wtype., guix-commits, 2022/03/03
- 08/08: gnu: texlive-latex-listings, texlive-latex-pgf: Do not deprecate the variable., guix-commits, 2022/03/03