gnu: go-golang-org-x-sync: Enable tests.

* gnu/packages/golang-build.scm (go-golang-org-x-sync): Refresh package style.
[arguments]: <#:phases>: Add custom 'check phase.

Change-Id: Ibee36b53934faed80561d461090cfcfea32b5bfa
This commit is contained in:
Sharlatan Hellseher 2024-06-20 08:06:22 +01:00
parent afbc1cc8b3
commit 16cf2fea8d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -281,11 +281,18 @@ (define-public go-golang-org-x-sync
(base32 "07qrhni6f5hh5p95k1yk6s4wsj341q663irvx6rllrxfsymj6a0z"))))
(build-system go-build-system)
(arguments
`(#:import-path "golang.org/x/sync"
#:tests? #f
;; Source-only package
#:phases (modify-phases %standard-phases
(delete 'build))))
(list
#:import-path "golang.org/x/sync"
#:phases
#~(modify-phases %standard-phases
;; XXX: Workaround for go-build-system's lack of Go modules
;; support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(home-page "https://go.googlesource.com/sync/")
(synopsis "Additional Go concurrency primitives")
(description "This package provides Go concurrency primitives in