diff options
author | Sharlatan Hellseher <[email protected]> | 2023-10-19 02:29:01 +0100 |
---|---|---|
committer | Maxim Cournoyer <[email protected]> | 2023-10-22 22:17:29 -0400 |
commit | 981f0fee040fb9bfa4475f5a16fafd30f522196f (patch) | |
tree | e0b179207b7199443faf14ecd9d80ea986fd42b6 /gnu/packages/golang-check.scm | |
parent | 799075605338f9c8f0e3eb52257aceb4099a203e (diff) |
gnu: go-gopkg-in-go-playground-assert-v1: Move to (gnu packages golang-check).
* gnu/packages/golang-check.scm (go-gopkg-in-go-playground-assert-v1):
Move from here...
* gnu/packages/golang.scm: ... to here.
Signed-off-by: Maxim Cournoyer <[email protected]>
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 414423a5ef..4b7ca74cc2 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2020 Jakub Kądziołka <[email protected]> ;;; Copyright © 2020 Joseph LaFreniere <[email protected]> ;;; Copyright © 2021 Sarah Morgensen <[email protected]> +;;; Copyright © 2021 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2022 Efraim Flashner <[email protected]> ;;; Copyright © 2023 Felix Lechner <[email protected]> ;;; @@ -189,6 +190,29 @@ Features include: (description "This package provides a test library for the Go language.") (license license:bsd-2))) +(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 basic assertions along with building blocks for +custom assertions to be used alongside native Go testing.") + (license license:expat))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |