guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit d41bd152505d55b010b72f8de2e1d55ad0af518d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 12 14:41:24 2025 +0100
gnu: go-github-com-pascaldekloe-goe: Simplify.
* gnu/packages/golang-web.scm (go-github-com-pascaldekloe-goe)
[arguments] <phases>: Use default 'check.
Change-Id: Iefe2d4d8f567bd8e6adbdc9c3e6d2e6a0a380342
---
gnu/packages/golang-web.scm | 12 ++----------
1 file changed, 2 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 9f9348071e..f7de6f408f 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -7954,16 +7954,8 @@ also be used to manage your stamp collection.")
(arguments
(list
#:go go-1.23
- #:import-path "github.com/pascaldekloe/goe"
- #:phases
- #~(modify-phases %standard-phases
- ;; XXX: Replace when go-build-system supports nested path.
- (delete 'build)
- (replace 'check
- (lambda* (#:key import-path tests? #:allow-other-keys)
- (when tests?
- (with-directory-excursion (string-append "src/" import-path)
- (invoke "go" "test" "-v" "./..."))))))))
+ #:skip-build? #t
+ #:import-path "github.com/pascaldekloe/goe"))
(home-page "https://github.com/pascaldekloe/goe")
(synopsis "Enterprise tooling for Golang")
(description