guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 08c706bb6f5a88b0be5364b4f21c3d176b0d5b15
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 12 10:17:48 2025 +0100
gnu: go-git-sr-ht-rockorager-go-jmap: Update to 0.5.2.
* gnu/packages/golang-web.scm (go-git-sr-ht-rockorager-go-jmap): Update to
0.5.2.
[arguments] <go>: Use go-1.23.
<phases>: Use default 'check.
Change-Id: Ifebbe0aa1fb7c063f591729ca39ab69c1515ae2f
---
gnu/packages/golang-web.scm | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 2bc7a381fe..280ff1e907 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -331,7 +331,7 @@ Gemini clients and servers.")
(define-public go-git-sr-ht-rockorager-go-jmap
(package
(name "go-git-sr-ht-rockorager-go-jmap")
- (version "0.5.0")
+ (version "0.5.2")
(source
(origin
(method git-fetch)
@@ -340,19 +340,12 @@ Gemini clients and servers.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1r8bmdlmvpk08i7xrqwgv0aaz05564wgcyji73nszdh2s32m4kzl"))))
+ (base32 "00lj2ckg039xn7gnwyvl55wcwrzcnz4383qajv35dv9yp19vnljy"))))
(build-system go-build-system)
(arguments
(list
- #:import-path "git.sr.ht/~rockorager/go-jmap"
- #:phases
- #~(modify-phases %standard-phases
- ;; XXX: Workaround for go-build-system's lack of Go modules support.
- (replace 'check
- (lambda* (#:key tests? import-path #:allow-other-keys)
- (when tests?
- (with-directory-excursion (string-append "src/" import-path)
- (invoke "go" "test" "-v" "./..."))))))))
+ #:go go-1.23
+ #:import-path "git.sr.ht/~rockorager/go-jmap"))
(native-inputs
(list
go-github-com-stretchr-testify))