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

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

Change-Id: Ia24c8b928cd030259cf13f0304837fa56aca0e6c
This commit is contained in:
Sharlatan Hellseher 2024-12-27 14:50:11 +00:00
parent 3864700ebc
commit f334a58160
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -4374,6 +4374,39 @@ (define-public go-github-com-mattn-go-xmlrpc
language.")
(license license:expat)))
(define-public go-github-com-mdlayher-ethtool
(package
(name "go-github-com-mdlayher-ethtool")
(version "0.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mdlayher/ethtool")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1pwm4cg1yf364k0c4i0jrrvgn82k14b163xcvnm3bvpglfbcy2ks"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/mdlayher/ethtool"))
(native-inputs
(list go-github-com-google-go-cmp))
(propagated-inputs
(list go-github-com-josharian-native
go-github-com-mdlayher-genetlink
go-github-com-mdlayher-netlink
go-golang-org-x-sys))
(home-page "https://github.com/mdlayher/ethtool")
(synopsis "Control of the Linux ethtool generic netlink interface")
(description
"Package ethtool allows control of the Linux ethtool generic netlink
interface. as it's described in
@url{https://www.kernel.org/doc/html/latest/networking/ethtool-netlink.html,
ethtool-netlink}.")
(license license:expat)))
(define-public go-github-com-mdlayher-genetlink
(package
(name "go-github-com-mdlayher-genetlink")