guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add libndp.


From: Mark H. Weaver
Subject: 01/03: gnu: Add libndp.
Date: Mon, 27 Jul 2015 19:13:05 +0000

mhw pushed a commit to branch master
in repository guix.

commit a2b2aebea9ab67fe4c1462e26ff5164e371b66dd
Author: Mark H Weaver <address@hidden>
Date:   Mon Jul 27 14:52:56 2015 -0400

    gnu: Add libndp.
    
    * gnu/packages/networking.scm (libndp): New variable.
---
 gnu/packages/networking.scm |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 717e624..70e02d6 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2015 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2015 Mark H Weaver <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -105,3 +106,23 @@ asynchronous message queues, multiple messaging patterns, 
message
 filtering (subscriptions), seamless access to multiple transport protocols and
 more.")
     (license license:lgpl3+)))
+
+(define-public libndp
+  (package
+    (name "libndp")
+    (version "1.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://libndp.org/files/";
+                                  name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "15f743hjc7yy2sv3hzvfc27s1gny4mh5aww59vn195fff2midwgs"))))
+    (build-system gnu-build-system)
+    (home-page "http://libndp.org/";)
+    (synopsis "Library for Neighbor Discovery Protocol")
+    (description
+     "libndp contains a library which provides a wrapper for IPv6 Neighbor
+Discovery Protocol.  It also provides a tool named ndptool for sending and
+receiving NDP messages.")
+    (license license:lgpl2.1+)))



reply via email to

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