mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add libndp.
* gnu/packages/networking.scm (libndp): New variable.
This commit is contained in:
parent
3dc8828f18
commit
a2b2aebea9
1 changed files with 21 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -105,3 +106,23 @@ (define-public zeromq
|
|||
filtering (subscriptions), seamless access to multiple transport protocols and
|
||||
more.")
|
||||
(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 a new issue