guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 1449ca7299400f03d9e61ba603104e30bfe8a9fc Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed May 28 01:00:11 2025 +0100
gnu: Add go-github-com-sourcegraph-conc. * gnu/packages/golang-xyz.scm (go-github-com-sourcegraph-conc): New variable. Change-Id: I93ce8463d326d80c7646200de15651153ed4f9c4 --- 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 cecbbcbafe..84ec55bd4a 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -15360,6 +15360,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")