diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index ea6959b45b..62f716d732 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -315,6 +315,31 @@ in Golang.") to be free of third-party dependencies.") (license license:expat))) +(define-public go-github-com-bsm-gomega + (package + (name "go-github-com-bsm-gomega") + (version "1.27.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bsm/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i7p85wsqv1j9aq052vdw006xq42n1rdgnk1lr6f5wnapwab2shz")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/bsm/gomega")) + (home-page "https://github.com/bsm/gomega") + (synopsis "Straight copy of Gomega library") + (description + "This is a straight copy of the excellent +@url{http://onsi.github.io/gomega/, Gomega} library, stripped to the bare core +to be free of third-party dependencies.") + (license license:expat))) + (define-public go-github-com-caarlos0-testfs (package (name "go-github-com-caarlos0-testfs")