From 1ea1fa96fe86028968695e5da3e643356d1f570a Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Sat, 29 Oct 2022 13:58:45 +0200 Subject: gnu: Add ndppd. * gnu/packages/admin.scm (ndppd): New variable. --- gnu/packages/admin.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 63dc6930f1..1a88f1e9a7 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1554,6 +1554,39 @@ (define-public radvd message. These messages are required for IPv6 stateless autoconfiguration.") (license (license:non-copyleft "file://COPYRIGHT")))) +(define-public ndppd + (package + (name "ndppd") + (version "0.2.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/DanielAdolfsson/ndppd") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0niri5q9qyyyw5lmjpxk19pv3v4srjvmvyd5k6ks99mvqczjx9c0")))) + (build-system gnu-build-system) + (arguments + (list #:tests? #f ; There are no tests + #:make-flags #~(list (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (add-after 'unpack 'fix-paths + (lambda _ + (substitute* "Makefile" + (("/bin/gzip") "gzip"))))))) + (synopsis "NDP Proxy Daemon") + (description + "The Neighbor Discovery Protocol Proxy Daemon (ndppd) proxies some IPv6 +NDP messages between interfaces to allow IPv6 routing between machines that +are in the same network but not on the same local link. It currently only +supports Neighbor Solicitation and Neighbor Advertisement messages.") + (home-page "https://github.com/DanielAdolfsson/ndppd") + (license license:gpl3+))) + (define-public libpcap (package (name "libpcap") -- cgit v1.2.3