diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index e0e68ba..5efbd9c 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2457,3 +2457,28 @@ events.") "Package assert implements the same assertions as the `assert` package but stops test execution when a test fails.") (license license:expat))) +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience functions for +writing tests in an xUnit style. See the README file and the examples folder +for examples.") + (license license:expat)))