mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add go-github-com-matrix-org-gomatrix.
* gnu/packages/golang.scm (go-github-com-matrix-org-gomatrix): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7c9265c46f
commit
8e755ae077
1 changed files with 21 additions and 0 deletions
|
@ -5484,6 +5484,27 @@ (define-public go-gopkg-in-yaml-v3
|
|||
1.1 for backwards compatibility.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-matrix-org-gomatrix
|
||||
(package
|
||||
(name "go-github-com-matrix-org-gomatrix")
|
||||
(version "0.0.0-20220926102614-ceba4d9f7530")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/matrix-org/gomatrix")
|
||||
(commit (go-version->git-ref version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0vq29bdswvffxsmwvi20wnk73xk92dva0fdr2k3zshr4z10ypm2x"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list #:import-path "github.com/matrix-org/gomatrix"))
|
||||
(home-page "https://github.com/matrix-org/gomatrix")
|
||||
(synopsis "Golang Matrix client")
|
||||
(description "This package provides a Golang Matrix client.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-mattn-go-isatty
|
||||
(package
|
||||
(name "go-github-com-mattn-go-isatty")
|
||||
|
|
Loading…
Reference in a new issue