me
/
guix
Archived
1
0
Fork 0

gnu: Add go-gopkg-in-go-playground-assert-v1.

* gnu/packages/golang.scm (go-gopkg-in-go-playground-assert-v1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Joseph LaFreniere 2020-07-26 23:21:41 -05:00 committed by Efraim Flashner
parent ac7174b33d
commit 0023c76d68
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -537,6 +537,29 @@ way of specifying command line options.")
(home-page "https://github.com/jessevdk/go-flags") (home-page "https://github.com/jessevdk/go-flags")
(license license:bsd-3))) (license license:bsd-3)))
(define-public go-gopkg-in-go-playground-assert-v1
(package
(name "go-gopkg-in-go-playground-assert-v1")
(version "1.2.1")
(home-page "https://github.com/go-playground/assert")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1h4amgykpa0djwi619llr3g55p75ia0mi184h9s5zdl8l4rhn9pm"))))
(build-system go-build-system)
(arguments
'(#:import-path "gopkg.in/go-playground/assert.v1"))
(synopsis "Basic assertion library used alongside native Go testing")
(description
"This package provides bassic assertions along with building blocks for
custom assertions to be used alongside native Go testing.")
(license license:expat)))
(define-public go-github-com-go-playground-locales (define-public go-github-com-go-playground-locales
(package (package
(name "go-github-com-go-playground-locales") (name "go-github-com-go-playground-locales")