guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit cd12a3ff32d66c16e94e06c6e8bcc2fe2d2aa8fa
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 1 14:10:35 2026 +0100
gnu: go-github-com-bytedance-sonic-loader: Update to 0.5.1.
* gnu/packages/golang-xyz.scm (go-github-com-bytedance-sonic-loader):
Update to 0.5.1.
[propagated-inputs]: Remove go-github-com-cloudwego-iasm.
[native-inputs]: Add go-github-com-davecgh-go-spew.
Change-Id: Ia76bf21c0b0d53ec402f185b62f03ad2773f51fd
---
gnu/packages/golang-xyz.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 021929fdd5..a392051bfa 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4359,7 +4359,7 @@ using JIT and SIMD approaches.")
(define-public go-github-com-bytedance-sonic-loader
(package
(name "go-github-com-bytedance-sonic-loader")
- (version "0.2.4")
+ (version "0.5.1")
(source
(origin
(method git-fetch)
@@ -4369,16 +4369,15 @@ using JIT and SIMD approaches.")
#:subdir "loader"))))
(file-name (git-file-name name version))
(sha256
- (base32 "09a7jka6a74802i6a6lgxlc3vp0jnb69hy1l5s772260q1zgnkds"))))
+ (base32 "05wxi0asqvdsdh2m0cs9f1hlxj90acfca0z5mq7bp6da5mzq16rp"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/bytedance/sonic/loader"
#:unpack-path "github.com/bytedance/sonic"))
(native-inputs
- (list go-github-com-stretchr-testify))
- (propagated-inputs
- (list go-github-com-cloudwego-iasm))
+ (list go-github-com-davecgh-go-spew
+ go-github-com-stretchr-testify))
(home-page "https://github.com/bytedance/sonic")
(synopsis "Function loader for Sonic Golang library")
(description