guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 78d6571364fc992a19f149126f14c2af1299aed7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Sep 26 16:18:11 2025 +0100

    gnu: Add go-github-com-moby-sys-signal.
    
    * gnu/packages/golang-xyz.scm (go-github-com-moby-sys-signal): New variable.
    
    Change-Id: I51498453edb642a44a5ba8180a8d812e9847a211
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 667be3d40a..0ef1290ac7 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14709,6 +14709,33 @@ names.")
 Windows.")
     (license license:asl2.0)))
 
+(define-public go-github-com-moby-sys-signal
+  (package
+    (name "go-github-com-moby-sys-signal")
+    (version "0.7.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/moby/sys";)
+             (commit (go-version->git-ref version
+                                          #:subdir "signal"))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1i1phx1kk9qa4jf1i1nl23d3f6k9fn2w46274cl76cqw9hjqg868"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/moby/sys/signal"
+      #:unpack-path "github.com/moby/sys"))
+    (propagated-inputs (list go-golang-org-x-sys))
+    (home-page "https://github.com/moby/sys";)
+    (synopsis "Helper functions for dealing with OS signals")
+    (description
+     "This provides helper functions for dealing with signals across various
+operating systems.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-moby-sys-symlink
   (package
     (name "go-github-com-moby-sys-symlink")

Reply via email to