sharlatan pushed a commit to branch go-team
in repository guix.
commit c38d960e417a33a7ae71a12c77a1959beb86f7ca
Author: Sharlatan Hellseher <[email protected]>
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 210fc6434f..0428ab818e 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")