1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 02:20:53 +02:00

gnu: Add go-github-com-gdey-tbltest.

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

Change-Id: I00c5b7f15ce5184dfa8c6204539038003c3f15a0
This commit is contained in:
Sharlatan Hellseher 2025-02-12 14:21:51 +00:00
parent d5661a4d20
commit db2cf5220d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

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