From 2cd257530c23166c2f3ec84ff45e1e47ac99138c Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Tue, 6 Jan 2026 10:03:24 -0500 Subject: [PATCH] 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 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c825548b39e..02238bd9366 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")