From 395b3cf94102dcf558e41888c571b56580a9f087 Mon Sep 17 00:00:00 2001 From: Roman Scherer Date: Sun, 29 Dec 2024 13:14:29 +0100 Subject: [PATCH] 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 --- gnu/packages/golang-check.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index e51cf1bf90e..88f2ff0d590 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -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")