guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0fc790cde30835228d46ae8cf0a8731e6b9a4255
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 13:44:01 2025 +0100

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

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 66cd7b9714..7923ff3584 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -6025,6 +6025,36 @@ types.")
 sockets (AF_NETLINK).")
     (license license:expat)))
 
+(define-public go-github-com-mdlayher-netx
+  (package
+    (name "go-github-com-mdlayher-netx")
+    (version "0.0.0-20230430222610-7e21880baee8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/mdlayher/netx";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "16l7z3z90im1ny6x9xq892hi4nha6phzv04izgjaaj1vvgs5pdqs"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:test-flags #~(list "-skip" "TestListenerAddr") ;unexpected UNIX address
+      #:import-path "github.com/mdlayher/netx"))
+    (native-inputs
+     (list go-github-com-google-go-cmp))
+    (propagated-inputs
+     (list go-golang-org-x-net
+           go-golang-org-x-sync))
+    (home-page "https://github.com/mdlayher/netx";)
+    (synopsis "Collection of small Go networking packages")
+    (description
+     "This package provides a collection of small Go networking packages.")
+    (license license:expat)))
+
 (define-public go-github-com-mdlayher-packet
   (package
     (name "go-github-com-mdlayher-packet")

Reply via email to