From 32d3608635cbdfd6cf09b870ec91be78a46e757d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 12 Jun 2025 14:41:24 +0100 Subject: [PATCH] gnu: go-github-com-pascaldekloe-goe: Simplify. * gnu/packages/golang-web.scm (go-github-com-pascaldekloe-goe) [arguments] : 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 9f9348071ef..f7de6f408f7 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