diff options
author | Christopher Baines <mail@cbaines.net> | 2024-04-15 10:57:23 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-04-15 10:57:31 +0100 |
commit | 953253eff32197863d223e5fece42b3c2440df01 (patch) | |
tree | eb85f6b719322174f5dc504cac9de9829e1651e2 /gnu/packages/golang-check.scm | |
parent | 2718616f77aace28b3962fef29b4e38b87a512ce (diff) | |
parent | 8e3831eb126478cad50588a0f3474667981b11ec (diff) |
Merge remote-tracking branch 'savannah/master' into mesa-updates
Change-Id: I00980ec5dbd9d23ab076995bc79331d136424796
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 4984d552d3..3e26f5f374 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -19,6 +19,7 @@ ;;; Copyright © 2023 Fries <fries1234@protonmail.com> ;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space> ;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com> +;;; Copyright © 2024 Greg Hogan <code@greghogan.com> ;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com> ;;; ;;; This file is part of GNU Guix. @@ -748,6 +749,21 @@ Features include: (propagated-inputs (list go-gopkg-in-yaml-v3))))) +(define-public go-github-com-stretchr-testify-next + (package + (inherit go-github-com-stretchr-testify) + (name "go-github-com-stretchr-testify") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12cnhk96h8b3ddlb7jfvwwavzc0j1c2iva92pszl9rv6r571ckzg")))))) + (define-public go-github-com-tdewolff-test (package (name "go-github-com-tdewolff-test") @@ -987,6 +1003,33 @@ custom assertions to be used alongside native Go testing.") (arguments (list #:import-path "github.com/go-playground/assert/v2")))) +(define-public go-go-uber-org-goleak + (package + (name "go-go-uber-org-goleak") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/goleak") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1lpqw7ygffak8qki9i4vw8b99l25l8jrw8iwcplqsclk6fzkl24p")))) + (build-system go-build-system) + (arguments + (list + #:import-path "go.uber.org/goleak")) + (native-inputs + (list go-github-com-stretchr-testify-next)) + (home-page "https://pkg.go.dev/go.uber.org/goleak") + (synopsis "Goroutine leak detector") + (description + "Go package to verify that there are no unexpected goroutines running at +the end of a test.") + (license license:expat))) + (define-public go-honnef-co-go-tools (package (name "go-honnef-co-go-tools") |