mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add go-github-com-go-playground-assert-v2.
* gnu/packages/golang-check.scm (go-github-com-go-playground-assert-v2): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: I18a67488291313c18a8e973614d78b6344d4dc45
This commit is contained in:
parent
62d3b90925
commit
d2a64c84a9
1 changed files with 17 additions and 0 deletions
|
@ -755,6 +755,23 @@ (define-public go-gopkg-in-go-playground-assert-v1
|
|||
custom assertions to be used alongside native Go testing.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-go-playground-assert-v2
|
||||
(package
|
||||
(inherit go-gopkg-in-go-playground-assert-v1)
|
||||
(name "go-github-com-go-playground-assert-v2")
|
||||
(version "2.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/go-playground/assert")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "13mb07dxhcy9ydqbracnrpfj682g6sazjpm56yrlbn2jc1yfy44c"))))
|
||||
(arguments
|
||||
(list #:import-path "github.com/go-playground/assert/v2"))))
|
||||
|
||||
(define-public go-honnef-co-go-tools
|
||||
(package
|
||||
(name "go-honnef-co-go-tools")
|
||||
|
|
Loading…
Reference in a new issue