From 8197800586328c9e92f00a74c805dca2706dcd06 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Sun, 4 Jan 2026 15:19:56 -0500 Subject: [PATCH] gnu: Add go-github-com-newmo-oss-go-caller. * gnu/packages/golang-check.scm (go-github-com-newmo-oss-go-caller): New variable. Relates-to: guix/guix!5417 Change-Id: Idb7a4ff58ceb1973ae913c21124d610b9cee8628 Reviewed-by: Johannes Christ Signed-off-by: Sharlatan Hellseher --- 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 0e552f21ce2..620c4e7afca 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -2713,6 +2713,31 @@ error messages, preserving the order of @code{have} (actual result) before @code{want} (expected result) to minimize confusion.") (license license:asl2.0))) +(define-public go-github-com-newmo-oss-go-caller + (package + (name "go-github-com-newmo-oss-go-caller") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/newmo-oss/go-caller") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hn0wj2v6yvn83lpilbcb9xpa36fmcbv83rk6fhr2rwckp2dxy8p")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/newmo-oss/go-caller")) + (native-inputs + (list go-github-com-google-go-cmp)) + (home-page "https://github.com/newmo-oss/go-caller") + (synopsis "Collect stack traces at runtime") + (description + "This package provides a library for collecting stack traces at runtime.") + (license license:expat))) + (define-public go-github-com-onsi-ginkgo (package (name "go-github-com-onsi-ginkgo")