mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: Add pounce.
* gnu/packages/messaging.scm (pounce): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
f856c8f1b0
commit
026ac3c010
1 changed files with 33 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
|||
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||
;;; Copyright © 2021 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
||||
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2021 jgart <jgart@dismail.de>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -59,6 +60,7 @@ (define-module (gnu packages messaging)
|
|||
#:use-module (gnu packages bison)
|
||||
#:use-module (gnu packages boost)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages code)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages cpp)
|
||||
#:use-module (gnu packages crypto)
|
||||
|
@ -3189,6 +3191,37 @@ (define-public matterbridge
|
|||
(home-page "https://github.com/42wim/matterbridge")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public pounce
|
||||
(package
|
||||
(name "pounce")
|
||||
(version "3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://git.causal.agency/pounce/snapshot/pounce-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1w4x34bspkqvk9p7bfj0zmvmbzvxb7lxrrr3g6lrfdj9f3qzfxpp"))))
|
||||
(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))))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("universal-ctags" ,universal-ctags)))
|
||||
(inputs
|
||||
`(("libressl" ,libressl)))
|
||||
(home-page "https://code.causal.agency/june/pounce")
|
||||
(synopsis "Simple multi-client TLS-only IRC bouncer")
|
||||
(description
|
||||
"@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains
|
||||
a persistent connection to an IRC server, acting as a proxy and buffer for
|
||||
a number of clients.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public weechat-matrix
|
||||
(package
|
||||
(name "weechat-matrix")
|
||||
|
|
Loading…
Reference in a new issue