guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: Add ndisc6.


From: guix-commits
Subject: 06/08: gnu: Add ndisc6.
Date: Sun, 14 Jun 2020 17:17:04 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 54bbed96389cb07f5f38f2a26d6c3ce35068710a
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Jun 13 20:29:52 2020 +0200

    gnu: Add ndisc6.
    
    * gnu/packages/networking.scm (ndisc6): New public variable.
---
 gnu/packages/networking.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 75017c0..88ee397 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -297,6 +297,34 @@ specification, which provides IPv6 Internet connectivity 
to IPv6 enabled hosts
 residing in IPv4-only networks, even when they are behind a NAT device.")
     (license license:gpl2+)))
 
+(define-public ndisc6
+  (package
+    (name "ndisc6")
+    (version "1.0.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://www.remlab.net/files/ndisc6/ndisc6-";
+                                  version ".tar.bz2"))
+              (sha256
+               (base32
+                "07swyar1hl83zxmd7fqwb2q0c0slvrswkcfp3nz5lknrk15dmcdb"))))
+    (build-system gnu-build-system)
+    (home-page "https://www.remlab.net/ndisc6/";)
+    (synopsis "IPv6 diagnostic tools")
+    (description
+     "NDisc6 is a collection of tools for IPv6 networking diagnostics.
+It includes the following programs:
+
+@itemize
+@item @command{ndisc6}: ICMPv6 Neighbor Discovery tool.
+@item @command{rdisc6}: ICMPv6 Router Discovery tool.
+@item @command{tcptraceroute6}: IPv6 traceroute over TCP.
+@item @command{traceroute6}: IPv6 traceroute over UDP.
+@item @command{rdnssd}: Recursive DNS Servers discovery daemon.
+@end itemize")
+    ;; The user can choose version 2 or 3 of the GPL, not later versions.
+    (license (list license:gpl2 license:gpl3))))
+
 (define-public socat
   (package
     (name "socat")



reply via email to

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