diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-12 15:17:09 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-12 16:58:43 +0100 |
commit | c1ff8e9efcfac542ed15382a5afec4651ee81d06 (patch) | |
tree | 8ae204aa0230f8fac7f7c40d75cf673d838ba5e9 /gnu | |
parent | e59360188fe46f55fdfdbd4c4767630a6428c0a0 (diff) | |
download | guix-c1ff8e9efcfac542ed15382a5afec4651ee81d06.tar.gz guix-c1ff8e9efcfac542ed15382a5afec4651ee81d06.zip |
gnu: go-go-uber-org-goleak: Enable tests.
* gnu/packages/golang.scm (go-go-uber-org-goleak) [arguments]:
<#:tests?>: Enable them.
[native-inputs]: Add go-github-com-stretchr-testify-next.
[propagated-inputs]: Remove indirect golang modules:
go-github-com-stretchr-testify, go-github-com-davecgh-go-spew,
go-github-com-kr-pretty, go-github-com-pmezard-go-difflib,
go-github-com-stretchr-testify, go-golang-org-x-lint,
go-golang-org-x-tools, go-gopkg-in-check-v1; and go-gopkg-in-yaml-v3.
Change-Id: I4fa1cf7ff9b9304c8ad0109381932e76ae389f62
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang.scm | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 91e14ae1a3..b7a376c15f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8469,17 +8469,9 @@ Gemini clients and servers.") "1lpqw7ygffak8qki9i4vw8b99l25l8jrw8iwcplqsclk6fzkl24p")))) (build-system go-build-system) (arguments - '(#:tests? #f - #:import-path "go.uber.org/goleak")) - (propagated-inputs - (list go-github-com-davecgh-go-spew - go-github-com-kr-pretty - go-github-com-pmezard-go-difflib - go-github-com-stretchr-testify - go-golang-org-x-lint - go-golang-org-x-tools - go-gopkg-in-check-v1 - go-gopkg-in-yaml-v3)) + '(#:import-path "go.uber.org/goleak")) + (native-inputs + (list go-github-com-stretchr-testify-next)) (home-page "https://go.uber.org/goleak") (synopsis "Goroutine leak detector") (description "Go package to verify that there are no unexpected goroutines |