summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2026-01-06 10:03:24 -0500
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 21:33:59 +0100
commit2cd257530c23166c2f3ec84ff45e1e47ac99138c (patch)
tree657ccf29045cabd3ac2d3eacbec11325c70584d0
parentf69c21d6e1f9d2277a02f2b7e2974888193ea717 (diff)
gnu: Add go-github-com-puzpuzpuz-xsync.
* gnu/packages/golang-xyz.scm (go-github-com-puzpuzpuz-xsync): New variable. Relates-to: https://codeberg.org/guix/guix/pulls/5417 Change-Id: Idf4818b8746759b68098a2c8d0afdead664df7ff Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index c825548b39..02238bd936 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -22564,6 +22564,31 @@ without configuration, but if desired, everything can be customized down to the
smallest detail.")
(license license:expat)))
+(define-public go-github-com-puzpuzpuz-xsync
+ (package
+ (name "go-github-com-puzpuzpuz-xsync")
+ (version "1.5.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/puzpuzpuz/xsync")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1qfmiyk5wypssr30nj5qp4izdav5gbaxf1324i70vjhn5g8g74mb"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/puzpuzpuz/xsync"))
+ (home-page "https://github.com/puzpuzpuz/xsync")
+ (synopsis "Concurrent data structures for Go")
+ (description
+ "This package is an extension for the standard @code{sync} package and
+provides the following concurrent data structures for Go: a concurrent
+counter, concurrent hash table, multiple concurrent queues and @code{mutex}.")
+ (license license:expat)))
+
(define-public go-github-com-quasilyte-go-ruleguard-dsl
(package
(name "go-github-com-quasilyte-go-ruleguard-dsl")