From eeadd5d2c844849935bd6a8bc0538e456da0eb39 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 5 Nov 2025 23:12:54 +0000 Subject: [PATCH] gnu: Add go-github-com-poy-onpar. * gnu/packages/golang-check.scm (go-github-com-poy-onpar): New variable. Change-Id: I29d5715c61b01ab9cb9a59d128aa31b42a2a696d --- gnu/packages/golang-check.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 2f604620ac2d526d7b0580d3e79e4d1ba3b97012..9096395714ddc28da20971f16488e9cf203d9d4b 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -2205,6 +2205,32 @@ current goroutine's ID.") Go application.") (license license:bsd-2))) +(define-public go-github-com-poy-onpar + (package + (name "go-github-com-poy-onpar") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/poy/onpar") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h4w1p846hw047gjlfqxh3ismdy6nripnkfqlrqvj2fvnakk2yhi")))) + (build-system go-build-system) + (arguments + (list + #:tests? #f ;cycles with git.sr.ht/~nelsam/hel + #:import-path "github.com/poy/onpar")) + (propagated-inputs + (list go-github-com-fatih-color)) + (home-page "https://github.com/poy/onpar") + (synopsis " Parallel testing framework for Golang") + (description + "This package implements a parallel testing framework for Go.") + (license license:expat))) + (define-public go-github-com-prashantv-gostub (package (name "go-github-com-prashantv-gostub")