From 2c706e87e39fd12747058ff2ded17b2519acae95 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 9 Sep 2025 10:23:26 +0100 Subject: [PATCH] gnu: Add go-github-com-bsm-gomega. * gnu/packages/golang-check.scm (go-github-com-bsm-gomega): New variable. Change-Id: I1c20f1019290506a7dc537298b122766fbf4d459 --- gnu/packages/golang-check.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index ea6959b45bec4864edb0c5d10736dee9d1ffb830..62f716d732b613b33dedfe785aefc9ea5c6497be 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")