2014-03-06 01:12:19 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-01-21 16:23:19 +01:00
|
|
|
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2014-11-21 18:39:39 +01:00
|
|
|
|
;;; Copyright © 2014 Julien Lepiller <julien@lepiller.eu>
|
2015-01-31 22:03:25 +01:00
|
|
|
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
2015-05-23 16:43:18 +02:00
|
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2016-08-22 21:35:26 +02:00
|
|
|
|
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
2015-12-06 21:11:02 +01:00
|
|
|
|
;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
|
2017-01-18 13:34:24 +01:00
|
|
|
|
;;; Copyright © 2016, 2017 <contact.ng0@cryptolab.net>
|
2016-09-22 05:58:29 +02:00
|
|
|
|
;;; Copyright © 2016 Andy Patterson <ajpatter@uwaterloo.ca>
|
2017-01-08 20:08:15 +01:00
|
|
|
|
;;; Copyright © 2016, 2017 Clément Lassieur <clement@lassieur.org>
|
2014-03-06 01:12:19 +01:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages messaging)
|
2016-08-23 13:07:17 +02:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (guix utils)
|
2014-03-06 01:12:19 +01:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2016-08-21 00:14:17 +02:00
|
|
|
|
#:use-module (guix git-download)
|
2014-03-06 01:12:19 +01:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2015-09-23 21:29:06 +02:00
|
|
|
|
#:use-module (guix build-system python)
|
2016-11-23 20:04:37 +01:00
|
|
|
|
#:use-module (guix build-system perl)
|
2016-12-18 21:10:16 +01:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2014-03-06 06:07:07 +01:00
|
|
|
|
#:use-module (gnu packages)
|
2016-09-22 05:58:29 +02:00
|
|
|
|
#:use-module (gnu packages aidc)
|
2017-01-18 13:34:25 +01:00
|
|
|
|
#:use-module (gnu packages aspell)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
|
#:use-module (gnu packages avahi)
|
2017-01-08 20:08:15 +01:00
|
|
|
|
#:use-module (gnu packages base)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (gnu packages check)
|
2016-08-21 00:14:17 +02:00
|
|
|
|
#:use-module (gnu packages crypto)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (gnu packages cyrus-sasl)
|
|
|
|
|
#:use-module (gnu packages databases)
|
gnu: Update module imports for asciidoc and doxygen.
This is a followup to commit 0573a923def01e54bf104e0015ade44ab42f694f.
* gnu/packages/algebra.scm, gnu/packages/bioinformatics.scm,
gnu/packages/fcitx.scm, gnu/packages/fish.scm,
gnu/packages/freedesktop.scm, gnu/packages/game-development.scm,
gnu/packages/gcc.scm, gnu/packages/graphics.scm, gnu/packages/image.scm,
gnu/packages/kodi.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/messaging.scm,
gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/rdf.scm,
gnu/packages/serialization.scm, gnu/packages/version-control.scm,
gnu/packages/web.scm, gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xiph.scm: Change imports of (gnu packages asciidoc) or
(gnu packages doxygen) to (gnu packages documentation).
2016-05-13 02:18:15 +02:00
|
|
|
|
#:use-module (gnu packages documentation)
|
2014-11-21 18:39:39 +01:00
|
|
|
|
#:use-module (gnu packages enchant)
|
2016-11-23 20:04:37 +01:00
|
|
|
|
#:use-module (gnu packages gettext)
|
2014-11-21 18:39:39 +01:00
|
|
|
|
#:use-module (gnu packages gnome)
|
|
|
|
|
#:use-module (gnu packages gtk)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
|
#:use-module (gnu packages xdisorg)
|
2014-11-21 18:39:39 +01:00
|
|
|
|
#:use-module (gnu packages libcanberra)
|
2016-11-23 20:04:37 +01:00
|
|
|
|
#:use-module (gnu packages man)
|
2016-09-07 18:37:38 +02:00
|
|
|
|
#:use-module (gnu packages networking)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (gnu packages libidn)
|
2016-08-22 21:35:26 +02:00
|
|
|
|
#:use-module (gnu packages lua)
|
2014-11-21 18:39:39 +01:00
|
|
|
|
#:use-module (gnu packages xml)
|
2014-03-06 06:07:07 +01:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
#:use-module (gnu packages ncurses)
|
2014-03-06 06:07:07 +01:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages python)
|
2016-11-23 20:04:37 +01:00
|
|
|
|
#:use-module (gnu packages pcre)
|
2014-03-06 06:07:07 +01:00
|
|
|
|
#:use-module (gnu packages perl)
|
2015-01-31 22:03:25 +01:00
|
|
|
|
#:use-module (gnu packages tcl)
|
2014-03-06 06:07:07 +01:00
|
|
|
|
#:use-module (gnu packages compression)
|
2015-01-31 22:03:25 +01:00
|
|
|
|
#:use-module (gnu packages check)
|
|
|
|
|
#:use-module (gnu packages admin)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 21:41:22 +02:00
|
|
|
|
#:use-module (gnu packages linux)
|
2015-08-13 23:29:35 +02:00
|
|
|
|
#:use-module (gnu packages tls)
|
2016-08-21 00:14:17 +02:00
|
|
|
|
#:use-module (gnu packages icu4c)
|
2016-08-23 13:51:24 +02:00
|
|
|
|
#:use-module (gnu packages qt)
|
2016-08-21 00:14:17 +02:00
|
|
|
|
#:use-module (gnu packages video)
|
2016-11-23 20:04:37 +01:00
|
|
|
|
#:use-module (gnu packages web)
|
2016-09-09 03:02:31 +02:00
|
|
|
|
#:use-module (gnu packages xiph)
|
|
|
|
|
#:use-module (gnu packages audio)
|
2016-11-23 20:04:37 +01:00
|
|
|
|
#:use-module (gnu packages bison)
|
2017-01-28 17:05:15 +01:00
|
|
|
|
#:use-module (gnu packages fontutils)
|
|
|
|
|
#:use-module (gnu packages bash)
|
|
|
|
|
#:use-module (gnu packages guile)
|
|
|
|
|
#:use-module (gnu packages less)
|
|
|
|
|
#:use-module (gnu packages readline)
|
|
|
|
|
#:use-module (gnu packages texinfo))
|
2014-03-06 01:12:19 +01:00
|
|
|
|
|
|
|
|
|
(define-public libotr
|
|
|
|
|
(package
|
|
|
|
|
(name "libotr")
|
2016-03-09 21:19:50 +01:00
|
|
|
|
(version "4.1.1")
|
2014-03-06 01:12:19 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://otr.cypherpunks.ca/libotr-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
2016-03-09 21:19:50 +01:00
|
|
|
|
(base32
|
2016-03-18 00:03:15 +01:00
|
|
|
|
"1x8rliydhbibmzwdbyr7pd7n87m2jmxnqkpvaalnf4154hj1hfwb"))
|
2016-04-08 14:18:13 +02:00
|
|
|
|
(patches (search-patches "libotr-test-auth-fix.patch"))))
|
2014-03-06 01:12:19 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("libgcrypt" ,libgcrypt))) ; libotr headers include gcrypt.h
|
|
|
|
|
(inputs `(("libgpg-error" ,libgpg-error)))
|
2016-03-09 21:19:50 +01:00
|
|
|
|
(native-inputs `(("perl" ,perl))) ; for the test suite
|
2014-03-06 01:12:19 +01:00
|
|
|
|
(synopsis "Off-the-Record (OTR) Messaging Library and Toolkit")
|
|
|
|
|
(description
|
|
|
|
|
"OTR allows you to have private conversations over instant messaging by
|
2015-08-04 22:10:42 +02:00
|
|
|
|
providing: (1) Encryption: No one else can read your instant messages. (2)
|
|
|
|
|
Authentication: You are assured the correspondent is who you think it is. (3)
|
|
|
|
|
Deniability: The messages you send do not have digital signatures that are
|
|
|
|
|
checkable by a third party. Anyone can forge messages after a conversation to
|
|
|
|
|
make them look like they came from you. However, during a conversation, your
|
|
|
|
|
correspondent is assured the messages he sees are authentic and
|
|
|
|
|
unmodified. (4) Perfect forward secrecy: If you lose control of your private
|
|
|
|
|
keys, no previous conversation is compromised.")
|
2014-03-06 01:12:19 +01:00
|
|
|
|
(home-page "https://otr.cypherpunks.ca/")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license (list license:lgpl2.1 license:gpl2))))
|
2014-03-06 01:12:19 +01:00
|
|
|
|
|
2014-03-06 06:07:07 +01:00
|
|
|
|
(define-public bitlbee
|
|
|
|
|
(package
|
|
|
|
|
(name "bitlbee")
|
2017-01-30 19:45:30 +01:00
|
|
|
|
(version "3.5.1")
|
2014-03-06 06:07:07 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2016-02-28 03:05:45 +01:00
|
|
|
|
(uri (string-append "https://get.bitlbee.org/src/bitlbee-"
|
2014-03-06 06:07:07 +01:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
2017-01-30 19:45:30 +01:00
|
|
|
|
(base32 "0sgsn0fv41rga46mih3fyv65cvfa6rvki8x92dn7bczbi7yxfdln"))))
|
2014-03-06 06:07:07 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)
|
|
|
|
|
("check" ,check)))
|
|
|
|
|
(inputs `(("glib" ,glib)
|
2014-07-07 07:19:17 +02:00
|
|
|
|
("libotr" ,libotr)
|
2014-03-06 06:07:07 +01:00
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("python" ,python-2)
|
|
|
|
|
("perl" ,perl)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases (alist-cons-after
|
|
|
|
|
'install 'install-etc
|
|
|
|
|
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
|
|
|
|
(zero? (apply system* "make" "install-etc" make-flags)))
|
|
|
|
|
(alist-replace
|
|
|
|
|
'configure
|
|
|
|
|
;; bitlbee's configure script does not tolerate many of the
|
|
|
|
|
;; variable settings that Guix would pass to it.
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(zero? (system* "./configure"
|
|
|
|
|
(string-append "--prefix="
|
|
|
|
|
(assoc-ref outputs "out"))
|
|
|
|
|
"--otr=1")))
|
|
|
|
|
%standard-phases))))
|
|
|
|
|
(synopsis "IRC to instant messaging gateway")
|
|
|
|
|
(description "BitlBee brings IM (instant messaging) to IRC clients, for
|
|
|
|
|
people who have an IRC client running all the time and don't want to run an
|
|
|
|
|
additional IM client. BitlBee currently supports XMPP/Jabber (including
|
|
|
|
|
Google Talk), MSN Messenger, Yahoo! Messenger, AIM and ICQ, and the Twitter
|
|
|
|
|
microblogging network (plus all other Twitter API compatible services like
|
|
|
|
|
identi.ca and status.net).")
|
|
|
|
|
(home-page "http://www.bitlbee.org/")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license (list license:gpl2+ license:bsd-2))))
|
2014-03-06 06:07:07 +01:00
|
|
|
|
|
2014-11-21 18:39:39 +01:00
|
|
|
|
(define-public hexchat
|
|
|
|
|
(package
|
|
|
|
|
(name "hexchat")
|
2016-10-09 21:21:16 +02:00
|
|
|
|
(version "2.12.2")
|
2014-11-21 18:39:39 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://dl.hexchat.net/hexchat/hexchat-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-10-09 21:21:16 +02:00
|
|
|
|
"1xnclfbrgbkqndxygi5f27q00jd7yy54jbd1061jmhxa6wzpibbd"))))
|
2014-11-21 18:39:39 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)
|
|
|
|
|
("intltool" ,intltool)))
|
|
|
|
|
(inputs `(("dbus-glib" ,dbus-glib)
|
|
|
|
|
("dbus" ,dbus)
|
|
|
|
|
("enchant" ,enchant)
|
|
|
|
|
("glib:bin" ,glib "bin") ;need glib-genmarshal
|
|
|
|
|
("gtk" ,gtk+-2)
|
|
|
|
|
("libcanberra" ,libcanberra)
|
|
|
|
|
("libnotify" ,libnotify)
|
|
|
|
|
("openssl" ,openssl)
|
2016-09-15 00:38:27 +02:00
|
|
|
|
|
|
|
|
|
;; Bindings for add-on scripts.
|
|
|
|
|
("luajit" ,luajit)
|
|
|
|
|
("perl-xml-parser" ,perl-xml-parser)
|
|
|
|
|
("python-2" ,python-2)))
|
2014-11-21 18:39:39 +01:00
|
|
|
|
(synopsis "Graphical IRC Client")
|
|
|
|
|
(description
|
2016-09-15 00:38:27 +02:00
|
|
|
|
"HexChat lets you connect to multiple IRC networks at once. The main
|
|
|
|
|
window shows the list of currently connected networks and their channels, the
|
|
|
|
|
current conversation and the list of users. It uses colors to differentiate
|
|
|
|
|
between users and to highlight messages. It checks spelling using available
|
2014-11-21 18:39:39 +01:00
|
|
|
|
dictionaries. HexChat can be extended with multiple addons.")
|
|
|
|
|
(home-page "http://hexchat.net/")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:gpl2+)))
|
2014-11-21 18:39:39 +01:00
|
|
|
|
|
2015-01-31 22:03:25 +01:00
|
|
|
|
(define-public ngircd
|
|
|
|
|
(package
|
|
|
|
|
(name "ngircd")
|
|
|
|
|
(version "22")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://arthur.barton.de/pub/ngircd/ngircd-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"17k3g9qd9d010czk5846qxvzkmw4fihv8l6m2a2287crbxm3xhd4"))
|
2016-04-08 14:18:13 +02:00
|
|
|
|
(patches (search-patches "ngircd-no-dns-in-tests.patch"
|
|
|
|
|
"ngircd-handle-zombies.patch"))))
|
2015-01-31 22:03:25 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
;; Needed for the test suite.
|
|
|
|
|
(native-inputs `(("procps" ,procps)
|
|
|
|
|
("expect" ,expect)
|
|
|
|
|
("inetutils" ,inetutils)))
|
2016-09-07 18:37:38 +02:00
|
|
|
|
;; XXX Add libident.
|
2015-01-31 22:03:25 +01:00
|
|
|
|
(inputs `(("zlib" ,zlib)
|
2016-09-07 18:37:38 +02:00
|
|
|
|
("libwrap" ,tcp-wrappers)
|
2015-01-31 22:03:25 +01:00
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
,@(if (string-suffix? "-linux"
|
|
|
|
|
(or (%current-target-system)
|
|
|
|
|
(%current-system)))
|
|
|
|
|
`(("linux-pam" ,linux-pam))
|
|
|
|
|
'())))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags
|
2016-09-07 18:37:38 +02:00
|
|
|
|
'("--with-gnutls" "--with-iconv" "--enable-ipv6" "--with-tcp-wrappers"
|
2015-01-31 22:03:25 +01:00
|
|
|
|
,@(if (string-suffix? "-linux"
|
|
|
|
|
(or (%current-target-system)
|
|
|
|
|
(%current-system)))
|
|
|
|
|
'("--with-pam")
|
|
|
|
|
'()))
|
|
|
|
|
#:phases
|
|
|
|
|
;; Necessary for the test suite.
|
|
|
|
|
(alist-cons-after
|
|
|
|
|
'configure 'post-configure
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "src/ngircd/Makefile"
|
2015-03-30 10:37:11 +02:00
|
|
|
|
(("/bin/sh") (which "sh")))
|
|
|
|
|
;; The default getpid.sh does a sloppy grep over 'ps -ax' output,
|
|
|
|
|
;; which fails arbitrarily.
|
|
|
|
|
(with-output-to-file "src/testsuite/getpid.sh"
|
|
|
|
|
(lambda ()
|
|
|
|
|
(display
|
|
|
|
|
(string-append
|
|
|
|
|
"#!" (which "sh") "\n"
|
|
|
|
|
"ps -C \"$1\" -o pid=\n"))))
|
|
|
|
|
;; Our variant of getpid.sh does not work for interpreter names if a
|
|
|
|
|
;; shebang script is run directly as "./foo", so patch cases where
|
|
|
|
|
;; the test suite relies on this.
|
|
|
|
|
(substitute* "src/testsuite/start-server.sh"
|
|
|
|
|
;; It runs 'getpid.sh sh' to test if it works at all. Run it on
|
|
|
|
|
;; 'make' instead.
|
|
|
|
|
(("getpid.sh sh") "getpid.sh make")))
|
2015-01-31 22:03:25 +01:00
|
|
|
|
%standard-phases)))
|
|
|
|
|
(home-page "http://ngircd.barton.de/")
|
|
|
|
|
(synopsis "Lightweight Internet Relay Chat server for small networks")
|
|
|
|
|
(description
|
|
|
|
|
"ngIRCd is a lightweight Internet Relay Chat server for small or private
|
|
|
|
|
networks. It is easy to configure, can cope with dynamic IP addresses, and
|
|
|
|
|
supports IPv6, SSL-protected connections as well as PAM for authentication.")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:gpl2+)))
|
2015-01-31 22:03:25 +01:00
|
|
|
|
|
2015-08-04 06:12:16 +02:00
|
|
|
|
(define-public pidgin
|
|
|
|
|
(package
|
|
|
|
|
(name "pidgin")
|
gnu: pidgin: Update to 2.11.0 [security fixes].
Fixes CVE-2016-{2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,
2377,2378,2379,2380,4323}.
* gnu/packages/messaging.scm (pidgin): Update to 2.11.0.
2016-07-16 17:45:18 +02:00
|
|
|
|
(version "2.11.0")
|
2015-08-04 06:12:16 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/pidgin/Pidgin/"
|
|
|
|
|
version "/" name "-" version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: pidgin: Update to 2.11.0 [security fixes].
Fixes CVE-2016-{2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,
2377,2378,2379,2380,4323}.
* gnu/packages/messaging.scm (pidgin): Update to 2.11.0.
2016-07-16 17:45:18 +02:00
|
|
|
|
"0crkggjj6y07v1kdwil9vw532b0vrs6p33nmlvdkpnl60m2169pp"))
|
2016-04-08 14:18:13 +02:00
|
|
|
|
(patches (search-patches "pidgin-add-search-path.patch"))))
|
2015-08-04 06:12:16 +02:00
|
|
|
|
(build-system glib-or-gtk-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("check" ,check)
|
|
|
|
|
("intltool" ,intltool)
|
|
|
|
|
("gconf" ,gconf)
|
|
|
|
|
("python" ,python-2)
|
|
|
|
|
("doxygen" ,doxygen)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("gtk+" ,gtk+-2)
|
|
|
|
|
("libgcrypt" ,libgcrypt)
|
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("cyrus-sasl" ,cyrus-sasl)
|
|
|
|
|
("dbus" ,dbus)
|
|
|
|
|
("dbus-glib" ,dbus-glib)
|
|
|
|
|
("python2-dbus" ,python2-dbus)
|
|
|
|
|
("libidn" ,libidn)
|
|
|
|
|
("libltdl" ,libltdl)
|
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
|
;; TODO: gstreamer: patches needed to support gstreamer-1.0 or later
|
|
|
|
|
;; TODO: farstream
|
|
|
|
|
;; TODO: meanwhile
|
|
|
|
|
;; TODO: network-manager
|
|
|
|
|
;; TODO: gtkspell
|
|
|
|
|
;; TODO: libxephyr
|
|
|
|
|
;; TODO: libgadu
|
|
|
|
|
("libxslt" ,libxslt)
|
|
|
|
|
("avahi" ,avahi)
|
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
|
("libice" ,libice)
|
|
|
|
|
("libsm" ,libsm)
|
|
|
|
|
("libxscrnsaver" ,libxscrnsaver)
|
|
|
|
|
("startup-notification" ,startup-notification)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags
|
|
|
|
|
(list "--disable-gtkspell"
|
|
|
|
|
"--disable-tcl"
|
|
|
|
|
"--disable-meanwhile"
|
|
|
|
|
"--disable-nm" ; XXX remove when we have network-manager
|
|
|
|
|
"--disable-vv" ; XXX remove when we have farstream and gstreamer
|
|
|
|
|
"--disable-gstreamer" ; XXX patches needed to support gstreamer-1.0
|
|
|
|
|
"--enable-cyrus-sasl"
|
|
|
|
|
(string-append "--with-ncurses-headers="
|
|
|
|
|
(assoc-ref %build-inputs "ncurses")
|
|
|
|
|
"/include"))))
|
|
|
|
|
(native-search-paths
|
|
|
|
|
(list (search-path-specification
|
|
|
|
|
(variable "PURPLE_PLUGIN_PATH")
|
|
|
|
|
(files (list (string-append "lib/purple-"
|
|
|
|
|
(version-prefix version 1))
|
|
|
|
|
"lib/pidgin")))))
|
|
|
|
|
(home-page "http://www.pidgin.im/")
|
|
|
|
|
(synopsis "Graphical multi-protocol instant messaging client")
|
|
|
|
|
(description
|
|
|
|
|
"Pidgin is a modular instant messaging client that supports many popular
|
|
|
|
|
chat protocols.")
|
|
|
|
|
(license
|
|
|
|
|
(list
|
2016-08-23 13:07:17 +02:00
|
|
|
|
license:gpl2+ ; Most of the code
|
|
|
|
|
license:lgpl2.1 ; GG protocol plugin (libpurple/protocols/gg/lib)
|
|
|
|
|
license:lgpl2.0+ ; OSCAR protocol plugin (libpurple/protocols/oscar)
|
2015-08-04 06:12:16 +02:00
|
|
|
|
;; The following licenses cover the zephyr protocol plugin:
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license:non-copyleft
|
2015-08-04 06:12:16 +02:00
|
|
|
|
"file://libpurple/protocols/zephyr/mit-copyright.h"
|
|
|
|
|
"See libpurple/protocols/zephyr/mit-copyright.h in the distribution.")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license:non-copyleft
|
2015-08-04 06:12:16 +02:00
|
|
|
|
"file://libpurple/protocols/zephyr/mit-sipb-copyright.h"
|
|
|
|
|
"See libpurple/protocols/zephyr/mit-sipb-copyright.h in the distribution.")))))
|
|
|
|
|
|
2015-08-04 18:04:09 +02:00
|
|
|
|
(define-public pidgin-otr
|
|
|
|
|
(package
|
|
|
|
|
(name "pidgin-otr")
|
2016-03-09 21:49:33 +01:00
|
|
|
|
(version "4.0.2")
|
2015-08-04 18:04:09 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://otr.cypherpunks.ca/"
|
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-03-09 21:49:33 +01:00
|
|
|
|
"1i5s9rrgbyss9rszq6c6y53hwqyw1k86s40cpsfx5ccl9bprxdgl"))))
|
2015-08-04 18:04:09 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("intltool" ,intltool)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("pidgin" ,pidgin)
|
|
|
|
|
("libotr" ,libotr)
|
|
|
|
|
("libgpg-error" ,libgpg-error)
|
|
|
|
|
("libgcrypt" ,libgcrypt)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("gtk+" ,gtk+-2)))
|
|
|
|
|
(home-page "https://otr.cypherpunks.ca/")
|
|
|
|
|
(synopsis "Off-the-Record Messaging plugin for Pidgin")
|
|
|
|
|
(description
|
|
|
|
|
"Pidgin-OTR is a plugin that adds support for OTR to the Pidgin instant
|
|
|
|
|
messaging client. OTR (Off-the-Record) Messaging allows you to have private
|
|
|
|
|
conversations over instant messaging by providing: (1) Encryption: No one else
|
|
|
|
|
can read your instant messages. (2) Authentication: You are assured the
|
|
|
|
|
correspondent is who you think it is. (3) Deniability: The messages you send
|
|
|
|
|
do not have digital signatures that are checkable by a third party. Anyone
|
|
|
|
|
can forge messages after a conversation to make them look like they came from
|
|
|
|
|
you. However, during a conversation, your correspondent is assured the
|
|
|
|
|
messages he sees are authentic and unmodified. (4) Perfect forward secrecy:
|
|
|
|
|
If you lose control of your private keys, no previous conversation is
|
|
|
|
|
compromised.")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:gpl2)))
|
2015-08-04 18:04:09 +02:00
|
|
|
|
|
2015-08-13 23:29:35 +02:00
|
|
|
|
(define-public znc
|
|
|
|
|
(package
|
|
|
|
|
(name "znc")
|
2016-12-28 05:14:05 +01:00
|
|
|
|
(version "1.6.4")
|
2015-08-13 23:29:35 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2015-12-26 08:32:32 +01:00
|
|
|
|
(uri (string-append "http://znc.in/releases/archive/znc-"
|
2015-08-13 23:29:35 +02:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-12-28 05:14:05 +01:00
|
|
|
|
"070d6b1i3jy66m4ci4ypxkg4pbwqbzbzss1y1ycgq2w62zmrf423"))))
|
2015-08-13 23:29:35 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f ; tries to download GoogleTest with wget
|
|
|
|
|
#:configure-flags '("--enable-python"
|
|
|
|
|
"--enable-perl"
|
|
|
|
|
"--enable-cyrus")))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("python" ,python)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("openssl" ,openssl)
|
|
|
|
|
("zlib" ,zlib)
|
|
|
|
|
("icu4c" ,icu4c)
|
|
|
|
|
("cyrus-sasl" ,cyrus-sasl)))
|
|
|
|
|
(home-page "http://znc.in")
|
|
|
|
|
(synopsis "IRC network bouncer")
|
|
|
|
|
(description "ZNC is an IRC network bouncer or BNC. It can detach the
|
|
|
|
|
client from the actual IRC server, and also from selected channels. Multiple
|
|
|
|
|
clients from different locations can connect to a single ZNC account
|
|
|
|
|
simultaneously and therefore appear under the same nickname on IRC.")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:asl2.0)))
|
2015-08-13 23:29:35 +02:00
|
|
|
|
|
2015-09-23 21:29:06 +02:00
|
|
|
|
(define-public python-nbxmpp
|
|
|
|
|
(package
|
|
|
|
|
(name "python-nbxmpp")
|
|
|
|
|
(version "0.5.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://pypi.python.org/packages/source/n/nbxmpp/"
|
|
|
|
|
"nbxmpp-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0dcr786dyips1fdvgsn8yvpgcz5j7217fi05c29cfypdl8jnp6mp"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
;; No tests included
|
|
|
|
|
(arguments `(#:tests? #f))
|
|
|
|
|
(home-page "http://python-nbxmpp.gajim.org")
|
|
|
|
|
(synopsis "Non-blocking Jabber/XMPP module")
|
|
|
|
|
(description
|
|
|
|
|
"The goal of this python library is to provide a way for Python
|
|
|
|
|
applications to use Jabber/XMPP networks in a non-blocking way. This library
|
|
|
|
|
was initially a fork of xmpppy, but is using non-blocking sockets.")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:gpl3+)))
|
2015-09-23 21:29:06 +02:00
|
|
|
|
|
|
|
|
|
(define-public python2-nbxmpp
|
|
|
|
|
(package-with-python2 python-nbxmpp))
|
|
|
|
|
|
2015-09-23 21:50:27 +02:00
|
|
|
|
(define-public gajim
|
|
|
|
|
(package
|
|
|
|
|
(name "gajim")
|
2016-10-20 13:02:37 +02:00
|
|
|
|
(version "0.16.6")
|
2015-09-23 21:50:27 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://gajim.org/downloads/"
|
|
|
|
|
(version-major+minor version)
|
|
|
|
|
"/gajim-" version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-10-20 13:02:37 +02:00
|
|
|
|
"1p3qwzy07f0wkika9yigyiq167l2k6wn12flqa7x55z4ihbysmqk"))))
|
2015-09-23 21:50:27 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2016-10-20 13:02:37 +02:00
|
|
|
|
`(#:phases
|
2015-09-23 21:50:27 +02:00
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'install 'wrap-program
|
2016-10-20 13:02:37 +02:00
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
;; Make sure all Python scripts run with the correct PYTHONPATH.
|
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(path (getenv "PYTHONPATH")))
|
|
|
|
|
(for-each (lambda (name)
|
|
|
|
|
(let ((file (string-append out "/bin/" name)))
|
|
|
|
|
;; Wrapping destroys identification of intended
|
|
|
|
|
;; application, so we need to override "APP".
|
|
|
|
|
(substitute* file
|
|
|
|
|
(("APP=`basename \\$0`")
|
|
|
|
|
(string-append "APP=" name)))
|
|
|
|
|
(wrap-program file
|
|
|
|
|
`("PYTHONPATH" ":" prefix (,path)))))
|
|
|
|
|
'("gajim" "gajim-remote" "gajim-history-manager")))
|
|
|
|
|
#t)))))
|
2015-09-23 21:50:27 +02:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("intltool" ,intltool)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("python2-nbxmpp" ,python2-nbxmpp)
|
|
|
|
|
("python2-pyopenssl" ,python2-pyopenssl)
|
|
|
|
|
("python2-gnupg" ,python2-gnupg)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("python2-pygtk" ,python2-pygtk)
|
|
|
|
|
("python" ,python-2)))
|
|
|
|
|
(home-page "https://gajim.org/")
|
|
|
|
|
(synopsis "Jabber (XMPP) client")
|
|
|
|
|
(description "Gajim is a feature-rich and easy to use Jabber/XMPP client.
|
|
|
|
|
Among its features are: a tabbed chat window and single window modes; support
|
|
|
|
|
for group chat (with Multi-User Chat protocol), invitation, chat to group chat
|
|
|
|
|
transformation; audio and video conferences; file transfer; TLS, GPG and
|
|
|
|
|
end-to-end encryption support; XML console.")
|
2016-10-19 06:50:04 +02:00
|
|
|
|
(license license:gpl3)))
|
2015-09-23 21:50:27 +02:00
|
|
|
|
|
2016-08-22 21:35:26 +02:00
|
|
|
|
(define-public prosody
|
|
|
|
|
(package
|
|
|
|
|
(name "prosody")
|
|
|
|
|
(version "0.9.10")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://prosody.im/downloads/source/"
|
|
|
|
|
"prosody-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0bv6s5c0iizz015hh1lxlwlw1iwvisywajm2rcrbdfyrskzfwdj8"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; no "check" target
|
2016-09-16 01:44:24 +02:00
|
|
|
|
#:configure-flags (list "--no-example-certs")
|
2016-08-22 21:35:26 +02:00
|
|
|
|
#:modules ((ice-9 match)
|
|
|
|
|
(srfi srfi-1)
|
|
|
|
|
(guix build gnu-build-system)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-configure-script
|
|
|
|
|
(lambda _
|
|
|
|
|
;; The configure script aborts when it encounters unexpected
|
|
|
|
|
;; arguments. Make it more tolerant.
|
|
|
|
|
(substitute* "configure"
|
|
|
|
|
(("exit 1") ""))
|
|
|
|
|
#t))
|
2017-01-08 20:08:16 +01:00
|
|
|
|
(add-after 'unpack 'fix-makefile
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
;; prosodyctl needs to read the configuration file.
|
|
|
|
|
(("^INSTALLEDCONFIG =.*") "INSTALLEDCONFIG = /etc/prosody\n")
|
|
|
|
|
;; prosodyctl needs a place to put auto-generated certificates.
|
|
|
|
|
(("^INSTALLEDDATA =.*") "INSTALLEDDATA = /var/lib/prosody\n"))
|
|
|
|
|
#t))
|
2016-08-22 21:35:26 +02:00
|
|
|
|
(add-after 'install 'wrap-programs
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
;; Make sure all executables in "bin" find the required Lua
|
|
|
|
|
;; modules at runtime.
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin/"))
|
|
|
|
|
(deps (delete #f (map (match-lambda
|
|
|
|
|
((label . directory)
|
|
|
|
|
(if (string-prefix? "lua" label)
|
|
|
|
|
directory #f)))
|
|
|
|
|
inputs)))
|
2017-01-08 20:08:15 +01:00
|
|
|
|
(lua-path (string-join
|
|
|
|
|
(map (lambda (path)
|
|
|
|
|
(string-append
|
|
|
|
|
path "/share/lua/5.1/?.lua;"
|
|
|
|
|
path "/share/lua/5.1/?/?.lua"))
|
|
|
|
|
(cons out deps))
|
|
|
|
|
";"))
|
|
|
|
|
(lua-cpath (string-join
|
|
|
|
|
(map (lambda (path)
|
|
|
|
|
(string-append
|
|
|
|
|
path "/lib/lua/5.1/?.so;"
|
|
|
|
|
path "/lib/lua/5.1/?/?.so"))
|
|
|
|
|
(cons out deps))
|
|
|
|
|
";"))
|
|
|
|
|
(openssl (assoc-ref inputs "openssl"))
|
|
|
|
|
(coreutils (assoc-ref inputs "coreutils"))
|
|
|
|
|
(path (map (lambda (dir)
|
|
|
|
|
(string-append dir "/bin"))
|
|
|
|
|
(list openssl coreutils))))
|
2016-08-22 21:35:26 +02:00
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(wrap-program file
|
2017-01-08 20:08:15 +01:00
|
|
|
|
`("LUA_PATH" ";" = (,lua-path))
|
|
|
|
|
`("LUA_CPATH" ";" = (,lua-cpath))
|
|
|
|
|
`("PATH" ":" prefix ,path)))
|
2016-08-22 21:35:26 +02:00
|
|
|
|
(find-files bin ".*"))
|
|
|
|
|
#t))))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libidn" ,libidn)
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("lua" ,lua-5.1)
|
|
|
|
|
("lua5.1-expat" ,lua5.1-expat)
|
|
|
|
|
("lua5.1-socket" ,lua5.1-socket)
|
|
|
|
|
("lua5.1-filesystem" ,lua5.1-filesystem)
|
2016-11-11 10:43:24 +01:00
|
|
|
|
;; See <https://prosody.im/doc/depends#luasec>.
|
|
|
|
|
("lua5.1-sec" ,lua5.1-sec-0.5)))
|
2016-08-22 21:35:26 +02:00
|
|
|
|
(home-page "https://prosody.im/")
|
|
|
|
|
(synopsis "Jabber (XMPP) server")
|
|
|
|
|
(description "Prosody is a modern XMPP communication server. It aims to
|
|
|
|
|
be easy to set up and configure, and efficient with system resources.
|
|
|
|
|
Additionally, for developers it aims to be easy to extend and give a flexible
|
|
|
|
|
system on which to rapidly develop added functionality, or prototype new
|
|
|
|
|
protocols.")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:x11)))
|
2016-08-22 21:35:26 +02:00
|
|
|
|
|
2016-08-21 00:14:17 +02:00
|
|
|
|
(define-public libtoxcore
|
|
|
|
|
(let ((revision "1")
|
|
|
|
|
(commit "755f084e8720b349026c85afbad58954cb7ff1d4"))
|
|
|
|
|
(package
|
|
|
|
|
(name "libtoxcore")
|
|
|
|
|
(version (string-append "0.0.0" "-"
|
|
|
|
|
revision "."(string-take commit 7)))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/irungentoo/toxcore.git")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0ap1gvlyihnfivv235dbrgsxsiiz70bhlmlr5gn1027w3h5kqz8w"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("libtool" ,libtool)
|
|
|
|
|
;; TODO: Add when test suite is capable of passing.
|
|
|
|
|
;; ("check" ,check)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libsodium" ,libsodium)
|
|
|
|
|
("opus" ,opus)
|
|
|
|
|
("libvpx" ,libvpx)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'autoconf
|
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "autoreconf" "-vfi")))))
|
|
|
|
|
#:tests? #f)) ; FIXME: Testsuite fails, reasons unspecific.
|
|
|
|
|
(synopsis "Library for the Tox encrypted messenger protocol")
|
|
|
|
|
(description
|
|
|
|
|
"C library implementation of the Tox encrypted messenger protocol.")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:gpl3+)
|
2016-08-21 00:14:17 +02:00
|
|
|
|
(home-page "https://tox.chat"))))
|
|
|
|
|
|
2016-12-18 21:10:15 +01:00
|
|
|
|
;; Some tox clients move to c-toxcore, which seems to be where all the
|
|
|
|
|
;; recent development happens. It is run by the same developers as toxcore,
|
|
|
|
|
;; forked into a group namespace.
|
|
|
|
|
(define-public c-toxcore
|
|
|
|
|
(package
|
|
|
|
|
(name "c-toxcore")
|
|
|
|
|
(version "0.1.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/TokTok/c-toxcore/archive/v"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0dybpz44pi0zm8djppjna0r8yh5wvl3l885dv2f1wp5366bk59n3"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("libtool" ,libtool)
|
|
|
|
|
("check" ,check)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libsodium" ,libsodium)
|
|
|
|
|
("opus" ,opus)
|
|
|
|
|
("libvpx" ,libvpx)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'autoconf
|
|
|
|
|
;; The tarball source is not bootstrapped.
|
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "autoreconf" "-vfi")))))
|
|
|
|
|
#:tests? #f)) ; FIXME: Testsuite fails, needs internet connection.
|
|
|
|
|
(synopsis "Library for the Tox encrypted messenger protocol")
|
|
|
|
|
(description
|
|
|
|
|
"Official fork of the C library implementation of the Tox
|
|
|
|
|
encrypted messenger protocol.")
|
|
|
|
|
(license license:gpl3+)
|
|
|
|
|
(home-page "https://tox.chat")))
|
|
|
|
|
|
2016-09-09 03:02:31 +02:00
|
|
|
|
(define-public utox
|
|
|
|
|
(package
|
|
|
|
|
(name "utox")
|
2016-12-18 21:10:16 +01:00
|
|
|
|
(version "0.11.0")
|
2016-09-09 03:02:31 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2016-12-18 21:10:16 +01:00
|
|
|
|
(uri (string-append "https://github.com/uTox/uTox/archive/v"
|
2016-09-09 03:02:31 +02:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-12-18 21:10:16 +01:00
|
|
|
|
"15s4iwjk1s0kihjqn0f07c9618clbphpr827mds3xddkiwnjz37v"))))
|
|
|
|
|
(build-system cmake-build-system)
|
2016-09-09 03:02:31 +02:00
|
|
|
|
(arguments
|
2016-12-18 21:10:16 +01:00
|
|
|
|
'(#:tests? #f ; No test phase.
|
2016-09-09 03:02:31 +02:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2016-12-18 21:10:16 +01:00
|
|
|
|
(add-after 'unpack 'fix-freetype-include
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
|
(("/usr/include/freetype2")
|
|
|
|
|
(string-append (assoc-ref %build-inputs "freetype")
|
|
|
|
|
"/include/freetype2")))))
|
|
|
|
|
(add-before 'install 'patch-cmake-find-utox
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "../build/cmake_install.cmake"
|
|
|
|
|
(("/uTox-0.11.0/utox")
|
|
|
|
|
"/build/utox")))))))
|
2016-09-09 03:02:31 +02:00
|
|
|
|
(inputs
|
2016-12-18 21:10:16 +01:00
|
|
|
|
;; TODO: Fix the file chooser dialog; which input does it need?
|
2016-09-09 03:02:31 +02:00
|
|
|
|
`(("dbus" ,dbus)
|
|
|
|
|
("filteraudio" ,filteraudio)
|
|
|
|
|
("fontconfig" ,fontconfig)
|
|
|
|
|
("freetype" ,freetype)
|
|
|
|
|
("libsodium" ,libsodium)
|
2016-12-18 21:10:16 +01:00
|
|
|
|
("c-toxcore" ,c-toxcore)
|
2016-09-09 03:02:31 +02:00
|
|
|
|
("libvpx" ,libvpx)
|
|
|
|
|
("libx11" ,libx11)
|
|
|
|
|
("libxext" ,libxext)
|
|
|
|
|
("libxrender" ,libxrender)
|
|
|
|
|
("openal" ,openal)
|
|
|
|
|
("v4l-utils" ,v4l-utils)))
|
|
|
|
|
(synopsis "Lightweight Tox client")
|
2016-12-18 21:10:17 +01:00
|
|
|
|
(description
|
|
|
|
|
"Utox is a lightweight Tox client. Tox is a distributed and secure
|
2016-09-09 03:02:31 +02:00
|
|
|
|
instant messenger with audio and video chat capabilities.")
|
|
|
|
|
(home-page "http://utox.org/")
|
2016-08-23 13:07:17 +02:00
|
|
|
|
(license license:gpl3)))
|
2016-12-18 21:10:16 +01:00
|
|
|
|
|
2016-09-22 05:58:29 +02:00
|
|
|
|
(define-public qtox
|
|
|
|
|
(package
|
|
|
|
|
(name "qtox")
|
|
|
|
|
(version "1.5.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/qTox/qTox/archive/v"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0y15mc39x54k1kz36cw9412kl1p1p6nzlx97gagv4gg3vybfhbjv"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("ffmpeg" ,ffmpeg)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("gtk+" ,gtk+-2)
|
|
|
|
|
("libsodium" ,libsodium)
|
|
|
|
|
("libtoxcore" ,libtoxcore)
|
|
|
|
|
("libvpx" ,libvpx)
|
|
|
|
|
("libxscrnsaver" ,libxscrnsaver)
|
|
|
|
|
("libx11" ,libx11)
|
|
|
|
|
("openal" ,openal)
|
|
|
|
|
("qrencode" ,qrencode)
|
|
|
|
|
("qt" ,qt)
|
|
|
|
|
("sqlcipher" ,sqlcipher)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("qmake" ,qt)))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-reproducibility-issues
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "src/main.cpp"
|
|
|
|
|
(("__DATE__") "\"\"")
|
|
|
|
|
(("__TIME__") "\"\"")
|
|
|
|
|
(("TIMESTAMP") "\"\""))
|
|
|
|
|
#t))
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(zero?
|
|
|
|
|
(system* "qmake"
|
|
|
|
|
(string-append "PREFIX="
|
|
|
|
|
(assoc-ref outputs "out")))))))))
|
|
|
|
|
(home-page "https://qtox.github.io/")
|
|
|
|
|
(synopsis "Tox chat client using Qt")
|
|
|
|
|
(description "qTox is a Tox client that follows the Tox design
|
|
|
|
|
guidelines. It provides an easy to use application that allows you to
|
|
|
|
|
connect with friends and family without anyone else listening in.")
|
|
|
|
|
(license license:gpl3+)))
|
2016-09-09 03:02:31 +02:00
|
|
|
|
|
2016-08-23 13:51:24 +02:00
|
|
|
|
(define-public pybitmessage
|
|
|
|
|
(package
|
|
|
|
|
(name "pybitmessage")
|
|
|
|
|
(version "0.6.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/Bitmessage/"
|
|
|
|
|
"PyBitmessage/archive/v" version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1ffj7raxpp277kphj98190fxrwfx16vmbspk7k3azg3bh5f5idnf"))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("python" ,python-2)
|
|
|
|
|
("python:tk" ,python-2 "tk")
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
|
("qt" ,qt-4)
|
|
|
|
|
("python2-pyqt-4" ,python2-pyqt-4)
|
|
|
|
|
("python2-sip" ,python2-sip)
|
|
|
|
|
("python2-pysqlite" ,python2-pysqlite)
|
|
|
|
|
("python2-pyopenssl" ,python2-pyopenssl)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:imported-modules ((guix build python-build-system)
|
|
|
|
|
,@%gnu-build-system-modules)
|
|
|
|
|
#:make-flags (list (string-append "PREFIX="
|
|
|
|
|
(assoc-ref %outputs "out")))
|
|
|
|
|
#:tests? #f ; no test target
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'fix-makefile
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("mkdir -p \\$\\{DESTDIR\\}/usr") "")
|
|
|
|
|
(("/usr/local") "")
|
|
|
|
|
(("/usr") "")
|
2017-01-23 22:25:02 +01:00
|
|
|
|
(("#!/bin/sh") (string-append "#!" (which "sh")))
|
2016-08-23 13:51:24 +02:00
|
|
|
|
(("python2") (which "python"))
|
|
|
|
|
(("/opt/openssl-compat-bitcoin/lib/")
|
|
|
|
|
(string-append (assoc-ref inputs "openssl") "/lib/")))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'unpack 'fix-unmatched-python-shebangs
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "src/bitmessagemain.py"
|
|
|
|
|
(("#!/usr/bin/env python2.7")
|
|
|
|
|
(string-append "#!" (which "python"))))
|
|
|
|
|
(substitute* "src/bitmessagecli.py"
|
|
|
|
|
(("#!/usr/bin/env python2.7.x")
|
|
|
|
|
(string-append "#!" (which "python"))))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'unpack 'fix-depends
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "src/depends.py"
|
|
|
|
|
(("libcrypto.so")
|
|
|
|
|
(string-append (assoc-ref inputs "openssl")
|
|
|
|
|
"/lib/libcrypto.so")))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'unpack 'fix-local-files-in-paths
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(substitute* "src/proofofwork.py"
|
|
|
|
|
(("bitmsghash.so")
|
|
|
|
|
(string-append (assoc-ref outputs "out")
|
|
|
|
|
"/lib/bitmsghash.so")))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'unpack 'fix-pyelliptic
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "src/pyelliptic/openssl.py"
|
|
|
|
|
(("libcrypto.so")
|
|
|
|
|
(string-append (assoc-ref inputs "openssl")
|
|
|
|
|
"/lib/libcrypto.so"))
|
|
|
|
|
(("libssl.so")
|
|
|
|
|
(string-append (assoc-ref inputs "openssl")
|
|
|
|
|
"/lib/libssl.so")))
|
|
|
|
|
#t))
|
|
|
|
|
;; XXX: Make does not build and install bitmsghash, do it
|
|
|
|
|
;; and place it in /lib.
|
|
|
|
|
(add-before 'build 'build-and-install-bitmsghash
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(chdir "src/bitmsghash")
|
|
|
|
|
(system* "make")
|
|
|
|
|
(chdir "../..")
|
|
|
|
|
(install-file "src/bitmsghash/bitmsghash.so"
|
|
|
|
|
(string-append (assoc-ref outputs "out") "/lib"))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'install 'wrap
|
|
|
|
|
(@@ (guix build python-build-system) wrap)))))
|
|
|
|
|
(license license:expat)
|
|
|
|
|
(description
|
|
|
|
|
"Distributed and trustless peer-to-peer communications protocol
|
|
|
|
|
for sending encrypted messages to one person or many subscribers.")
|
|
|
|
|
(synopsis "Distributed peer-to-peer communication")
|
|
|
|
|
(home-page "https://bitmessage.org/")))
|
|
|
|
|
|
2016-09-22 21:00:43 +02:00
|
|
|
|
(define-public ytalk
|
|
|
|
|
(package
|
|
|
|
|
(name "ytalk")
|
|
|
|
|
(version "3.3.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "ftp://ftp.ourproject.org/pub/ytalk/ytalk-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1d3jhnj8rgzxyxjwfa22vh45qwzjvxw1qh8fz6b7nfkj3zvk9jvf"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("ncurses" ,ncurses)))
|
|
|
|
|
(home-page "http://ytalk.ourproject.org")
|
|
|
|
|
(synopsis "Multi-user chat program")
|
|
|
|
|
(description "Ytalk is a replacement for the BSD talk program. Its main
|
|
|
|
|
advantage is the ability to communicate with any arbitrary number of users at
|
|
|
|
|
once. It supports both talk protocols (\"talk\" and \"ntalk\") and can communicate
|
|
|
|
|
with several different talk daemons at the same time.")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2016-09-15 23:46:46 +02:00
|
|
|
|
(define-public gloox
|
|
|
|
|
(package
|
|
|
|
|
(name "gloox")
|
|
|
|
|
(version "1.0.17")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://camaya.net/download/gloox-"
|
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"09c01jr5nrm7f1ly42wg0pqqscmp48pv8y2fjx1vwbavjxdq59ri"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libidn" ,libidn)
|
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(synopsis "Portable high-level Jabber/XMPP library for C++")
|
|
|
|
|
(description
|
|
|
|
|
"gloox is a full-featured Jabber/XMPP client library,
|
|
|
|
|
written in ANSI C++. It makes writing spec-compliant clients easy
|
|
|
|
|
and allows for hassle-free integration of Jabber/XMPP functionality
|
|
|
|
|
into existing applications.")
|
|
|
|
|
(home-page "https://camaya.net/gloox")
|
|
|
|
|
(license license:gpl3)))
|
2016-09-22 21:00:43 +02:00
|
|
|
|
|
2016-11-23 20:04:37 +01:00
|
|
|
|
(define-public perl-net-psyc
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-net-psyc")
|
|
|
|
|
(version "1.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://perlpsyc.psyc.eu/"
|
|
|
|
|
"perlpsyc-" version ".zip"))
|
|
|
|
|
(file-name (string-append name "-" version ".zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1lw6807qrbmvzbrjn1rna1dhir2k70xpcjvyjn45y35hav333a42"))
|
|
|
|
|
;; psycmp3 currently depends on MP3::List and rxaudio (shareware),
|
|
|
|
|
;; we can add it back when this is no longer the case.
|
|
|
|
|
(snippet '(delete-file "contrib/psycmp3"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("perl-curses" ,perl-curses)
|
|
|
|
|
("perl-io-socket-ssl" ,perl-io-socket-ssl)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure) ; No configure script
|
|
|
|
|
;; There is a Makefile, but it does not install everything
|
|
|
|
|
;; (leaves out psycion) and says
|
|
|
|
|
;; "# Just to give you a rough idea". XXX: Fix it upstream.
|
|
|
|
|
(replace 'build
|
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "make" "manuals"))))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(doc (string-append out "/share/doc/perl-net-psyc"))
|
|
|
|
|
(man1 (string-append out "/share/man/man1"))
|
|
|
|
|
(man3 (string-append out "/share/man/man3"))
|
|
|
|
|
(bin (string-append out "/bin"))
|
|
|
|
|
(libpsyc (string-append out "/lib/psyc/ion"))
|
|
|
|
|
(libperl (string-append out "/lib/perl5/site_perl/"
|
|
|
|
|
,(package-version perl))))
|
|
|
|
|
|
|
|
|
|
(copy-recursively "lib/perl5" libperl)
|
|
|
|
|
(copy-recursively "lib/psycion" libpsyc)
|
|
|
|
|
(copy-recursively "bin" bin)
|
|
|
|
|
(install-file "cgi/psycpager" (string-append doc "/cgi"))
|
|
|
|
|
(copy-recursively "contrib" (string-append doc "/contrib"))
|
|
|
|
|
(copy-recursively "hooks" (string-append doc "/hooks"))
|
|
|
|
|
(copy-recursively "sdj" (string-append doc "/sdj"))
|
|
|
|
|
(install-file "README.txt" doc)
|
|
|
|
|
(install-file "TODO.txt" doc)
|
|
|
|
|
(copy-recursively "share/man/man1" man1)
|
|
|
|
|
(copy-recursively "share/man/man3" man3)
|
|
|
|
|
#t)))
|
|
|
|
|
(add-after 'install 'wrap-programs
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
;; Make sure all executables in "bin" find the Perl modules
|
|
|
|
|
;; provided by this package at runtime.
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin/"))
|
|
|
|
|
(path (getenv "PERL5LIB")))
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(wrap-program file
|
|
|
|
|
`("PERL5LIB" ":" prefix (,path))))
|
|
|
|
|
(find-files bin "\\.*$"))
|
|
|
|
|
#t))))))
|
|
|
|
|
(description
|
|
|
|
|
"@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and
|
|
|
|
|
Gtk2 event loops. This package includes 12 applications and additional scripts:
|
|
|
|
|
psycion (a @uref{http://about.psyc.eu,PSYC} chat client), remotor (a control console
|
|
|
|
|
for @uref{https://torproject.org,tor} router) and many more.")
|
|
|
|
|
(synopsis "Perl implementation of PSYC protocol")
|
|
|
|
|
(home-page "http://perlpsyc.psyc.eu/")
|
|
|
|
|
(license (list license:gpl2
|
|
|
|
|
(package-license perl)
|
|
|
|
|
;; contrib/irssi-psyc.pl:
|
|
|
|
|
license:public-domain
|
|
|
|
|
;; bin/psycplay states AGPL with no version:
|
|
|
|
|
license:agpl3+))))
|
|
|
|
|
|
|
|
|
|
(define-public libpsyc
|
|
|
|
|
(package
|
|
|
|
|
(name "libpsyc")
|
|
|
|
|
(version "20160913")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://www.psyced.org/files/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"14q89fxap05ajkfn20rnhc6b1h4i3i2adyr7y6hs5zqwb2lcmc1p"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl" ,perl)
|
|
|
|
|
("netcat" ,netcat)
|
|
|
|
|
("procps" ,procps)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags
|
|
|
|
|
(list "CC=gcc"
|
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
;; The rust bindings are the only ones in use, the lpc bindings
|
|
|
|
|
;; are in psyclpc. The other bindings are not used by anything,
|
|
|
|
|
;; the chances are high that the bindings do not even work,
|
|
|
|
|
;; therefore we do not include them.
|
|
|
|
|
;; TODO: Get a cargo build system in Guix.
|
|
|
|
|
(delete 'configure)))) ; no configure script
|
|
|
|
|
(home-page "http://about.psyc.eu/libpsyc")
|
|
|
|
|
(description
|
|
|
|
|
"@code{libpsyc} is a PSYC library in C which implements
|
|
|
|
|
core aspects of PSYC, useful for all kinds of clients and servers
|
|
|
|
|
including psyced.")
|
|
|
|
|
(synopsis "PSYC library in C")
|
|
|
|
|
(license license:agpl3+)))
|
|
|
|
|
|
2016-11-26 19:25:08 +01:00
|
|
|
|
;; This commit removes the historic bundled pcre and makes psyclpc reproducible.
|
2016-11-23 20:04:37 +01:00
|
|
|
|
(define-public psyclpc
|
|
|
|
|
(let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
|
|
|
|
|
(revision "2"))
|
|
|
|
|
(package
|
|
|
|
|
(name "psyclpc")
|
|
|
|
|
(version (string-append "20160821-" revision "." (string-take commit 7)))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "git://git.psyced.org/git/psyclpc")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1viwqymbhn3cwvx0zl58rlzl5gw47zxn0ldg2nbi55ghm5zxl1z5"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; There are no tests/checks.
|
|
|
|
|
#:configure-flags
|
|
|
|
|
;; If you have questions about this part, look at
|
|
|
|
|
;; "src/settings/psyced" and the ebuild.
|
|
|
|
|
(list
|
|
|
|
|
"--enable-use-tls=yes"
|
|
|
|
|
"--enable-use-mccp" ; Mud Client Compression Protocol, leave this enabled.
|
|
|
|
|
(string-append "--prefix="
|
|
|
|
|
(assoc-ref %outputs "out"))
|
|
|
|
|
;; src/Makefile: Set MUD_LIB to the directory which contains
|
|
|
|
|
;; the mud data. defaults to MUD_LIB = @libdir@
|
|
|
|
|
(string-append "--libdir="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/opt/psyced/world")
|
|
|
|
|
(string-append "--bindir="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/opt/psyced/bin")
|
|
|
|
|
;; src/Makefile: Set ERQ_DIR to directory which contains the
|
|
|
|
|
;; stuff which ERQ can execute (hopefully) savely. Was formerly
|
|
|
|
|
;; defined in config.h. defaults to ERQ_DIR= @libexecdir@
|
|
|
|
|
(string-append "--libexecdir="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/opt/psyced/run"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'chdir-to-src
|
|
|
|
|
;; We need to pass this as env variables
|
|
|
|
|
;; and manually change the directory.
|
|
|
|
|
(lambda _
|
|
|
|
|
(chdir "src")
|
|
|
|
|
(setenv "CONFIG_SHELL" (which "sh"))
|
|
|
|
|
(setenv "SHELL" (which "sh"))
|
|
|
|
|
#t)))
|
|
|
|
|
#:make-flags (list "install-all")))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("zlib" ,zlib)
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("pcre" ,pcre)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("bison" ,bison)
|
|
|
|
|
("gettext" ,gettext-minimal)
|
|
|
|
|
("help2man" ,help2man)
|
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)))
|
|
|
|
|
(home-page "http://lpc.psyc.eu/")
|
|
|
|
|
(synopsis "psycLPC is a multi-user network server programming language")
|
|
|
|
|
(description
|
|
|
|
|
"LPC is a bytecode language, invented to specifically implement
|
|
|
|
|
multi user virtual environments on the internet. This technology is used for
|
|
|
|
|
MUDs and also the psyced implementation of the Protocol for SYnchronous
|
|
|
|
|
Conferencing (PSYC). psycLPC is a fork of LDMud with some new features and
|
|
|
|
|
many bug fixes.")
|
|
|
|
|
(license license:gpl2))))
|
|
|
|
|
|
2017-01-18 13:34:24 +01:00
|
|
|
|
(define-public loudmouth
|
|
|
|
|
(package
|
|
|
|
|
(name "loudmouth")
|
|
|
|
|
(version "1.5.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://mcabber.com/files/loudmouth/"
|
|
|
|
|
name "-" version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0b6kd5gpndl9nzis3n6hcl0ldz74bnbiypqgqa1vgb0vrcar8cjl"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("glib" ,glib)
|
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
|
("libidn" ,libidn)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("check" ,check)
|
|
|
|
|
("glib" ,glib "bin") ; gtester
|
|
|
|
|
("gtk-doc" ,gtk-doc)))
|
|
|
|
|
(home-page "https://mcabber.com/")
|
|
|
|
|
(description
|
|
|
|
|
"Loudmouth is a lightweight and easy-to-use C library for programming
|
|
|
|
|
with the XMPP (formerly known as Jabber) protocol. It is designed to be
|
|
|
|
|
easy to get started with and yet extensible to let you do anything the XMPP
|
|
|
|
|
protocol allows.")
|
|
|
|
|
(synopsis "Asynchronous XMPP library")
|
|
|
|
|
;; The files have LGPL2.0+ headers, but COPYING specifies LGPL2.1.
|
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
|
2017-01-18 13:34:25 +01:00
|
|
|
|
(define-public mcabber
|
|
|
|
|
(package
|
|
|
|
|
(name "mcabber")
|
|
|
|
|
(version "1.0.4")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://mcabber.com/files/"
|
|
|
|
|
name "-" version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"02nfn5r7cjpnacym95l6bvczii232v3x2gi79gfa9syc7w0brdk3"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:configure-flags (list "--enable-otr"
|
|
|
|
|
"--enable-aspell")))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("gpgme" ,gpgme)
|
|
|
|
|
("libotr" ,libotr)
|
|
|
|
|
("aspell" ,aspell)
|
|
|
|
|
("libidn" ,libidn)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
|
("loudmouth" ,loudmouth)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(home-page "https://mcabber.com")
|
|
|
|
|
(description
|
|
|
|
|
"Mcabber is a small XMPP (Jabber) console client, which includes features
|
|
|
|
|
such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,
|
|
|
|
|
command-completion, OpenPGP encryption, @dfn{Off-the-Record Messaging} (OTR)
|
|
|
|
|
support, and more.")
|
|
|
|
|
(synopsis "Small XMPP console client")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2017-01-28 17:05:15 +01:00
|
|
|
|
(define-public freetalk
|
|
|
|
|
(package
|
|
|
|
|
(name "freetalk")
|
|
|
|
|
(version "4.1")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/freetalk/freetalk-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1rmrn7a1bb7vm26yaklrvx008a9qhwc32s57dwrlf40lv9gffwny"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'autogen
|
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "sh" "autogen.sh"))))
|
|
|
|
|
;; For 'system' commands in Scheme code.
|
|
|
|
|
(add-after 'install 'wrap-program
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bash (assoc-ref inputs "bash"))
|
|
|
|
|
(coreutils (assoc-ref inputs "coreutils"))
|
|
|
|
|
(less (assoc-ref inputs "less")))
|
|
|
|
|
(wrap-program (string-append out "/bin/freetalk")
|
|
|
|
|
`("PATH" ":" prefix
|
|
|
|
|
,(map (lambda (dir)
|
|
|
|
|
(string-append dir "/bin"))
|
|
|
|
|
(list bash coreutils less))))
|
|
|
|
|
#t))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
|
("texinfo" ,texinfo)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("bash" ,bash)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("guile" ,guile-2.0)
|
|
|
|
|
("less" ,less)
|
|
|
|
|
("loudmouth" ,loudmouth)
|
|
|
|
|
("readline" ,readline)))
|
|
|
|
|
(synopsis "Extensible console-based Jabber client")
|
|
|
|
|
(description
|
|
|
|
|
"GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses
|
|
|
|
|
the Readline library to handle input, so it features convenient navigation of
|
|
|
|
|
text as well as tab-completion of buddy names, commands and English words. It
|
|
|
|
|
is also scriptable and extensible via Guile.")
|
|
|
|
|
(home-page "https://www.gnu.org/software/freetalk")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2014-03-06 01:12:19 +01:00
|
|
|
|
;;; messaging.scm ends here
|