sharlatan pushed a commit to branch go-team in repository guix. commit c2d264cb9854cfe6c82dd1f3d530fdcf0978fd14 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed Feb 12 15:01:50 2025 +0000
gnu: Add go-github-com-mattn-goveralls. * gnu/packages/golang-web.scm (go-github-com-mattn-goveralls): New variable. Change-Id: I20f7ef319fdeb8618b8e1283fc850167aa86aacb --- gnu/packages/golang-web.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index ea6ca2b840..92186748a3 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5286,6 +5286,35 @@ via REST APIs.") language.") (license license:expat))) +(define-public go-github-com-mattn-goveralls + (package + (name "go-github-com-mattn-goveralls") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/goveralls") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16jszydip2abwc0fws3sz5yzyy87w8mbkhzm2wzb8ijpjhk1by79")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/mattn/goveralls" + ;; Test requires git. + #:test-flags #~(list "-skip" "TestShowArg/with_show"))) + (propagated-inputs + (list go-golang-org-x-mod + go-golang-org-x-tools)) + (home-page "https://github.com/mattn/goveralls") + (synopsis "Golang client for Coveralls.io") + (description + "This package provides a client for @url{http://coveralls.io/ +Coveralls.io} continuous code coverage tracking system.") + (license license:expat))) + (define-public go-github-com-mdlayher-ethtool (package (name "go-github-com-mdlayher-ethtool")