From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54738) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJLCJ-0002lh-40 for guix-patches@gnu.org; Thu, 17 May 2018 11:52:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJLCF-0006er-6q for guix-patches@gnu.org; Thu, 17 May 2018 11:52:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59086) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJLCF-0006el-00 for guix-patches@gnu.org; Thu, 17 May 2018 11:52:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJLCE-0001tJ-EF for guix-patches@gnu.org; Thu, 17 May 2018 11:52:02 -0400 Subject: [bug#31478] [PATCH] gnu: Add zyre. References: <20180516214715.4728-2-tonton@riseup.net> In-Reply-To: <20180516214715.4728-2-tonton@riseup.net> Resent-Message-ID: From: Tonton Date: Thu, 17 May 2018 17:50:33 +0200 Message-Id: <20180517155033.16669-1-tonton@riseup.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31478@debbugs.gnu.org Cc: Tonton * gnu/packages/networking.scm (zyre): New variable. --- gnu/packages/networking.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 7f4550cba..2ccf42059 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1796,3 +1796,35 @@ remotely.") (home-page "http://czmq.zeromq.org/") (license license:mpl2.0))) +(define-public zyre + (package + (name "zyre") + (version "2.0.0") + (source (origin + (method url-fetch) + (uri + (string-append "https://github.com/zeromq/zyre/releases/download/v" + version "/" name "-" version ".tar.gz")) + (sha256 + (base32 + "0qz2730bng1gs9xbqxhkw88qbsmszgmmrl2g9k6xrg6r3bqvsdc7")))) + (build-system gnu-build-system) + (inputs `(("zeromq" ,zeromq) + ("czmq" ,czmq) + ("libsodium" ,libsodium))) + (synopsis "Framework for proximity-based peer-to-peer applications") + (description "Zyre provides reliable group messaging over local area +networks using zeromq. It has these key characteristics: + +@itemize +@item Zyre needs no administration or configuration. +@item Peers may join and leave the network at any time. +@item Peers talk to each other without any central brokers or servers. +@item Peers can talk directly to each other. +@item Peers can join groups, and then talk to groups. +@item Zyre is reliable, and loses no messages even when the network is heavily loaded. +@item Zyre is fast and has low latency, requiring no consensus protocols. +@item Zyre is designed for WiFi networks, yet also works well on Ethernet networks. +@end itemize") + (home-page "https://github.com/zeromq/zyre") + (license license:mpl2.0))) -- 2.17.0