gnu: Add ndisc6.
* gnu/packages/networking.scm (ndisc6): New public variable.
This commit is contained in:
parent
cf123e321d
commit
54bbed9638
1 changed files with 28 additions and 0 deletions
|
@ -297,6 +297,34 @@ (define-public miredo
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue