gnu: Add go-github-com-bool64-shared.

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

Change-Id: Ib6b26619e2065e3a40ccae59f821aabffa2b00a0
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Roman Scherer 2024-12-29 13:14:29 +01:00 committed by Sharlatan Hellseher
parent bb451548f1
commit 395b3cf941
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -202,6 +202,33 @@ results, converting test names WrittenInCamelCase into ordinary sentences.")
for Golang projects via modular Makefiles and GitHub Actions.")
(license license:expat)))
(define-public go-github-com-bool64-shared
(package
(name "go-github-com-bool64-shared")
(version "0.1.5")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bool64/shared")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "157k7vw9cq84i5yy8bab8n1dk2lc9cmz8kjjy710ic9lwridmnf8"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/bool64/shared"))
(native-inputs
(list go-github-com-bool64-dev
go-github-com-stretchr-testify))
(home-page "https://github.com/bool64/shared")
(synopsis "Share variables between test helpers in Golang")
(description
"This package provides a contract to share variables between test helpers
in Golang.")
(license license:expat)))
(define-public go-github-com-caarlos0-testfs
(package
(name "go-github-com-caarlos0-testfs")