1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-bsm-gomega.

* gnu/packages/golang-check.scm (go-github-com-bsm-gomega): New variable.

Change-Id: I1c20f1019290506a7dc537298b122766fbf4d459
This commit is contained in:
Sharlatan Hellseher
2025-09-09 10:23:26 +01:00
parent 0529cf1000
commit 2c706e87e3

View File

@@ -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")