mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add miredo.
* gnu/packages/networking.scm (miredo): New variable.
This commit is contained in:
parent
9e2292ef3d
commit
1e61e22f4d
1 changed files with 29 additions and 1 deletions
|
@ -24,7 +24,35 @@ (define-module (gnu packages networking)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages openssl))
|
||||
|
||||
;; XXX: Group with other networking tools like tcpdump in a module?
|
||||
(define-public miredo
|
||||
(package
|
||||
(name "miredo")
|
||||
(version "1.2.6")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.remlab.net/files/miredo/miredo-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0j9ilig570snbmj48230hf7ms8kvcwi2wblycqrmhh85lksd49ps"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; The checkconf test in src/ requires network access.
|
||||
(add-before
|
||||
'check 'disable-checkconf-test
|
||||
(lambda _
|
||||
(substitute* "src/Makefile"
|
||||
(("^TESTS = .*") "TESTS = \n")))))))
|
||||
(home-page "http://www.remlab.net/miredo/")
|
||||
(synopsis "Teredo IPv6 tunneling software")
|
||||
(description
|
||||
"Miredo is an implementation (client, relay, server) of the Teredo
|
||||
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 socat
|
||||
(package
|
||||
(name "socat")
|
||||
|
|
Loading…
Reference in a new issue