mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-go-uber-org-goleak: Move to golang-check.
* gnu/packages/golang.scm (go-go-uber-org-goleak): Move from here ... * gnu/packages/golang-check.scm: ... to here. Change-Id: Iaadd6506457cb3487df8f27f71442a6dcabce816
This commit is contained in:
parent
c1ff8e9efc
commit
977490e635
2 changed files with 28 additions and 24 deletions
|
@ -19,6 +19,7 @@
|
||||||
;;; Copyright © 2023 Fries <fries1234@protonmail.com>
|
;;; Copyright © 2023 Fries <fries1234@protonmail.com>
|
||||||
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
||||||
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
||||||
|
;;; Copyright © 2024 Greg Hogan <code@greghogan.com>
|
||||||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -1002,6 +1003,33 @@ custom assertions to be used alongside native Go testing.")
|
||||||
(arguments
|
(arguments
|
||||||
(list #:import-path "github.com/go-playground/assert/v2"))))
|
(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://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
|
(define-public go-honnef-co-go-tools
|
||||||
(package
|
(package
|
||||||
(name "go-honnef-co-go-tools")
|
(name "go-honnef-co-go-tools")
|
||||||
|
|
|
@ -8454,30 +8454,6 @@ Gemini clients and servers.")
|
||||||
@code{getopt} for Go.")
|
@code{getopt} for Go.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(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
|
|
||||||
'(#: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
|
|
||||||
running at the end of a test.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-go-uber-org-multierr
|
(define-public go-go-uber-org-multierr
|
||||||
(package
|
(package
|
||||||
(name "go-go-uber-org-multierr")
|
(name "go-go-uber-org-multierr")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue