mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add profanity.
* gnu/packages/messaging.scm (profanity): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
781d3b070c
commit
a829c6501b
1 changed files with 35 additions and 0 deletions
|
@ -44,6 +44,7 @@ (define-module (gnu packages messaging)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages crypto)
|
#:use-module (gnu packages crypto)
|
||||||
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages cyrus-sasl)
|
#:use-module (gnu packages cyrus-sasl)
|
||||||
#:use-module (gnu packages databases)
|
#:use-module (gnu packages databases)
|
||||||
#:use-module (gnu packages documentation)
|
#:use-module (gnu packages documentation)
|
||||||
|
@ -1293,4 +1294,38 @@ (define-public libstrophe
|
||||||
;; Dual licensed.
|
;; Dual licensed.
|
||||||
(license (list license:gpl3+ license:x11))))
|
(license (list license:gpl3+ license:x11))))
|
||||||
|
|
||||||
|
(define-public profanity
|
||||||
|
(package
|
||||||
|
(name "profanity")
|
||||||
|
(version "0.5.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri "http://www.profanity.im/profanity-0.5.1.tar.gz")
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1f7ylw3mhhnii52mmk40hyc4kqhpvjdr3hmsplzkdhsfww9kflg3"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("curl" ,curl)
|
||||||
|
("expat" ,expat)
|
||||||
|
("glib" ,glib)
|
||||||
|
("gpgme" ,gpgme)
|
||||||
|
("libmesode" ,libmesode)
|
||||||
|
("libotr" ,libotr)
|
||||||
|
("ncurses" ,ncurses)
|
||||||
|
("openssl" ,openssl)
|
||||||
|
("readline" ,readline)))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("autoconf-archive" ,autoconf-archive)
|
||||||
|
("automake" ,automake)
|
||||||
|
("cmocka" ,cmocka)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(synopsis "Console-based XMPP client")
|
||||||
|
(description "Profanity is a console based XMPP client written in C
|
||||||
|
using ncurses and libmesode, inspired by Irssi.")
|
||||||
|
(home-page "http://www.profanity.im")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
;;; messaging.scm ends here
|
;;; messaging.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue