gnu: Add libndp.
* gnu/packages/networking.scm (libndp): New variable.
This commit is contained in:
parent
3dc8828f18
commit
a2b2aebea9
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; 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
|
filtering (subscriptions), seamless access to multiple transport protocols and
|
||||||
more.")
|
more.")
|
||||||
(license license:lgpl3+)))
|
(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+)))
|
||||||
|
|
Loading…
Reference in New Issue