From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH] gnu: Add toxic. Date: Thu, 22 Dec 2016 18:47:46 +0000 Message-ID: <20161222184746.14948-2-ng0@libertad.pw> References: <20161222184746.14948-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50708) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cK8P6-0004Nw-UR for guix-devel@gnu.org; Thu, 22 Dec 2016 13:47:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cK8P2-0008Ff-Tr for guix-devel@gnu.org; Thu, 22 Dec 2016 13:47:48 -0500 Received: from aibo.runbox.com ([91.220.196.211]:54606) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cK8P2-0008F9-MR for guix-devel@gnu.org; Thu, 22 Dec 2016 13:47:44 -0500 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cK8P1-0007BO-Cu for guix-devel@gnu.org; Thu, 22 Dec 2016 19:47:43 +0100 In-Reply-To: <20161222184746.14948-1-ng0@libertad.pw> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/messaging.scm (toxic): New variable. --- gnu/packages/messaging.scm | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 4290a9f69..24728cc06 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -40,6 +40,7 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages avahi) #:use-module (gnu packages check) + #:use-module (gnu packages curl) #:use-module (gnu packages crypto) #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages databases) @@ -70,12 +71,14 @@ #:use-module (gnu packages linux) #:use-module (gnu packages tls) #:use-module (gnu packages icu4c) + #:use-module (gnu packages image) #:use-module (gnu packages qt) #:use-module (gnu packages video) #:use-module (gnu packages web) #:use-module (gnu packages xiph) #:use-module (gnu packages audio) #:use-module (gnu packages bison) + #:use-module (gnu packages textutils) #:use-module (gnu packages fontutils)) (define-public libotr @@ -767,6 +770,50 @@ 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+))) +(define-public toxic + (package + (name "toxic") + (version "0.7.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/JFreegman/toxic/archive/" + "v" version ".tar.gz")) + (sha256 + (base32 + "0nbcj71ffl85l396bxc5cs8d7abn4b7absaj5asq9bvcfv52m5m2")) + (file-name (string-append name "-" version ".tar.gz")))) + (inputs + `(("ncurses" ,ncurses) + ("libconfig" ,libconfig) + ("curl" ,curl) + ("libsodium" ,libsodium) + ("freealut" ,freealut) + ("libnotify" ,libnotify) + ("c-toxcore" ,c-toxcore) + ("openal" ,openal) + ("libvpx" ,libvpx) + ("libx11" ,libx11) + ("libpng" ,libpng) + ("qrencode" ,qrencode))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("libconfig" ,libconfig))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no tests + #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (home-page "https://github.com/JFreegman/toxic/") + (synopsis "Tox client using an ncurses interface") + (description + "Toxic is a small tox clien. It provides an easy to use application +that allows you to connect with friends and family without anyone else +listening in.") + (license license:gpl3+))) + (define-public pybitmessage (package (name "pybitmessage") -- 2.11.0