guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 9a1101fb4f6b16a98a537864e83be9ecaaeb3454 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed May 28 00:24:50 2025 +0100
gnu: Add go-github-com-matterbridge-gomatrix. * gnu/packages/golang-web.scm (go-github-com-matterbridge-gomatrix): New variable. Change-Id: I6afa6eb0710d4729bffeb5eb09938fe389018360 --- gnu/packages/golang-web.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 736134c569..66dc6b0604 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5703,6 +5703,31 @@ supported by HTTP PATCH method, allowing for standards based partial updates via REST APIs.") (license license:asl2.0))) +(define-public go-github-com-matterbridge-gomatrix + (package + (name "go-github-com-matterbridge-gomatrix") + (version "0.0.0-20220411225302-271e5088ea27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/matterbridge/gomatrix") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08y6kbsa9cs4d9qckwg85i64gz7jbv606gqk4sk09172bzaxzsm1")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/matterbridge/gomatrix")) + (home-page "https://github.com/matterbridge/gomatrix") + (synopsis "Golang Matrix client") + (description + "Package gomatrix implements the Matrix Client-Server API. This package +is an alternative fork of not maintained +https://github.com/matrix-org/gomatrix project.") + (license license:asl2.0))) + (define-public go-github-com-mattn-go-ieproxy (package (name "go-github-com-mattn-go-ieproxy")