guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 211c674f4aeb7d8c9baad7516d245cc32da7a5b1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 16:02:25 2025 +0100

    gnu: Add go-github-com-sourcegraph-conc.
    
    * gnu/packages/golang-xyz.scm (go-github-com-sourcegraph-conc): New 
variable.
    
    Change-Id: I34748c866cf0475145621a7683b8bdb028f6c2ae
---
 gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 7c997ab994..a1782567a9 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -16454,6 +16454,34 @@ Use waterutil with it to work with TUN/TAP 
packets/frames.")
 converting them to the @code{time.Duration} type.")
     (license license:expat)))
 
+(define-public go-github-com-sourcegraph-conc
+  (package
+    (name "go-github-com-sourcegraph-conc")
+    (version "0.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/sourcegraph/conc";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1anqhnpiak7fd6xxrjanwgrfz3c8ypksmx3zgx5f000bsfrlr1wq"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/sourcegraph/conc"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-go-uber-org-multierr))
+    (home-page "https://github.com/sourcegraph/conc";)
+    (synopsis "Structured concurrency for Golang")
+    (description
+     "This package provides a more structured and controlled goroutines
+implementation.")
+    (license license:expat)))
+
 (define-public go-github-com-spf13-afero
   (package
     (name "go-github-com-spf13-afero")

Reply via email to