diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 13:54:21 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 21:44:22 +0100 |
| commit | 781c496dfb0f247a795944b69287ffc93429ac0f (patch) | |
| tree | 59bfc85011ae248f5824a4b23c22f31553876c14 /gnu | |
| parent | e03dbf5f94a60ddc9d26676059b53d7b4c1721ca (diff) | |
gnu: Add go-github-com-puzpuzpuz-xsync-v4.
* gnu/packages/golang-xyz.scm (go-github-com-puzpuzpuz-xsync-v4): New variable.
Change-Id: I3784cbe42301552ce26ee05cee5b3413603ee45a
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 61bc99cc38..2d9a75e7ae 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -22802,6 +22802,25 @@ counter, concurrent hash table, multiple concurrent queues and @code{mutex}.") (list #:import-path "github.com/puzpuzpuz/xsync/v3")))) +(define-public go-github-com-puzpuzpuz-xsync-v4 + (package + (inherit go-github-com-puzpuzpuz-xsync-v3) + (name "go-github-com-puzpuzpuz-xsync-v4") + (version "4.5.0") + (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 "04caylbphjgq1qbpd09cg0b8h84y4zznsdfhi20w4f1628fq7077")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/puzpuzpuz/xsync/v4")))) + (define-public go-github-com-quasilyte-go-ruleguard-dsl (package (name "go-github-com-quasilyte-go-ruleguard-dsl") |
