guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 9c7112e1a38527449ead3cf9fca8315f79550b8d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 13:37:44 2025 +0100

    gnu: Add go-github-com-mdlayher-ndp.
    
    * gnu/packages/golang-web.scm (go-github-com-mdlayher-ndp): New variable.
    
    Change-Id: Ib0a664b13e9ff5b11c40d8ccc4237bec66fe360b
---
 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 803d932d09..66cd7b9714 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5938,6 +5938,34 @@ ethtool-netlink}.")
 types.")
     (license license:expat)))
 
+(define-public go-github-com-mdlayher-ndp
+  (package
+    (name "go-github-com-mdlayher-ndp")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mdlayher/ndp";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0mkffb1wjaigj73vz2hk7gyk83yj7xnn70zn45254xa6fvhpwl9z"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/mdlayher/ndp"))
+    (native-inputs
+     (list go-github-com-google-go-cmp))
+    (propagated-inputs
+     (list go-golang-org-x-net))
+    (home-page "https://github.com/mdlayher/ndp";)
+    (synopsis "Implementation of the Neighbor Discovery Protocol in Golang")
+    (description
+     "Package ndp implements the Neighbor Discovery Protocol, as described in
+@url{https://rfc-editor.org/rfc/rfc4861.html, RFC 4861}.")
+    (license license:expat)))
+
 (define-public go-github-com-mdlayher-netlink
   (package
     (name "go-github-com-mdlayher-netlink")

Reply via email to