diff options
-rw-r--r-- | gnu/packages/golang.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index f93b2c1ab7..8925be2494 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3132,6 +3132,16 @@ common task.") (home-page "https://github.com/gotestyourself/gotest.tools") (license license:asl2.0))) +(define-public go-gotest-tools-internal-format + (package (inherit (go-gotest-tools-package "internal/format")) + (native-inputs + `(("go-github-com-pkg-errors" ,go-github-com-pkg-errors) + ("go-github-com-google-go-cmp-cmp" + ,go-github-com-google-go-cmp-cmp))) + (synopsis "Formats messages for use with gotest-tools") + (description "This package provides a way to format messages for use +with gotest-tools."))) + (define-public go-gotest-tools-assert (package (inherit (go-gotest-tools-package "assert")) (name "go-gotest-tools-assert") |