diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 80f0fce..b7a2a4c 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2162,3 +2162,26 @@ content related to docker images.") "This repository holds supplemental Go packages for low-level interactions with the operating system.") (license license:bsd-3))) +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat)))