gnu: Add go-github-com-mdlayher-arp.

* gnu/packages/golang-web.scm (go-github-com-mdlayher-arp): New variable.

Change-Id: Ibf789917d67f907509a653b5227e628bc0955ba2
This commit is contained in:
Sharlatan Hellseher 2025-07-07 13:32:28 +01:00
parent cbd3a610cd
commit 1afd358aa2
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -5822,6 +5822,33 @@ language.")
Coveralls.io} continuous code coverage tracking system.")
(license license:expat)))
(define-public go-github-com-mdlayher-arp
(package
(name "go-github-com-mdlayher-arp")
(version "0.0.0-20220512170110-6706a2966875")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mdlayher/arp")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "18gi06d387pwpl1krlb3y47c2i2rip4n604gv9k9ark3lh9maavx"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/mdlayher/arp"))
(propagated-inputs
(list go-github-com-mdlayher-ethernet
go-github-com-mdlayher-packet))
(home-page "https://github.com/mdlayher/arp")
(synopsis "Implementation of the ARP protocol in Golang")
(description
"Package arp implements the ARP protocol, as described in
@url{https://rfc-editor.org/rfc/rfc826.html, RFC 826}.")
(license license:expat)))
(define-public go-github-com-mdlayher-ethernet
(package
(name "go-github-com-mdlayher-ethernet")