sharlatan pushed a commit to branch go-team
in repository guix.
commit 1a3c8c1ee16a260e5bcbb6c8b1e7810ce72edcb5
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 12 14:21:51 2025 +0000
gnu: Add go-github-com-gdey-tbltest.
* gnu/packages/golang-check.scm (go-github-com-gdey-tbltest): New variable.
Change-Id: I00c5b7f15ce5184dfa8c6204539038003c3f15a0
---
gnu/packages/golang-check.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index b8fa1d4527..d915abddf0 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -507,6 +507,30 @@ workloads. This kind of profiling is also known as
wall-clock profiling.")
tests.")
(license license:expat)))
+(define-public go-github-com-gdey-tbltest
+ (package
+ (name "go-github-com-gdey-tbltest")
+ (version "0.0.0-20180914212833-1865222d591f")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gdey/tbltest")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14mfhhqd0qm0m9nhk02vrj31bjnspa7b0ijbmy0j3bhbkh66xbcs"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/gdey/tbltest"))
+ (home-page "https://github.com/gdey/tbltest")
+ (synopsis "Table driven tests for Golang")
+ (description
+ "Package tbltest implements helper functions to help write table driven
+tests.")
+ (license license:expat)))
+
(define-public go-github-com-go-playground-validator-v10
(package
(name "go-github-com-go-playground-validator-v10")