guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: Add zyre.


From: Ludovic Courtès
Subject: 01/03: gnu: Add zyre.
Date: Sat, 19 May 2018 16:51:46 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit d282fee549c2bad9f413bada5f398aa220f84429
Author: Tonton <address@hidden>
Date:   Thu May 17 17:50:33 2018 +0200

    gnu: Add zyre.
    
    * gnu/packages/networking.scm (zyre): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/networking.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index eda2984..7e69a48 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -20,6 +20,7 @@
 ;;; Copyright © 2017 Thomas Danckaert <address@hidden>
 ;;; Copyright © 2018 Adam Van Ymeren <address@hidden>
 ;;; Copyright © 2018 Fis Trivial <address@hidden>
+;;; Copyright © 2018 Tonton <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1768,3 +1769,36 @@ allowing you to run a client with no graphical 
interface, and a Web GUI for
 remote access.  The @command{amulecmd} command allows you to control aMule
 remotely.")
     (license license:gpl2+)))
+
+(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:
+
address@hidden
address@hidden Zyre needs no administration or configuration.
address@hidden Peers may join and leave the network at any time.
address@hidden Peers talk to each other without any central brokers or servers.
address@hidden Peers can talk directly to each other.
address@hidden Peers can join groups, and then talk to groups.
address@hidden Zyre is reliable, and loses no messages even when the network is 
heavily loaded.
address@hidden Zyre is fast and has low latency, requiring no consensus 
protocols.
address@hidden Zyre is designed for WiFi networks, yet also works well on 
Ethernet networks.
address@hidden itemize")
+    (home-page "https://github.com/zeromq/zyre";)
+    (license license:mpl2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]