diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 22:39:33 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 22:39:33 +0100 |
| commit | 3e4980c3eb0656e28e438185aab71e559f63bbc0 (patch) | |
| tree | 018c9b2016fd8ae7cba532cba34ae4c88341c852 | |
| parent | a98a265d97e10040e3e1c8d03f33dff8be3dc38e (diff) | |
gnu: Add go-github-com-mrexodia-wray.
* gnu/packages/golang-web.scm (go-github-com-mrexodia-wray): New variable.
Change-Id: I124b28d541a0f13411c672d55f3045f9636c9ae2
| -rw-r--r-- | gnu/packages/golang-web.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 4bce3ef2208..6b0f8b4255c 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -11813,6 +11813,34 @@ forwarding and DNS resolution across host and VM boundaries.") the standard library.") (license license:expat))) +(define-public go-github-com-mrexodia-wray + (package + (name "go-github-com-mrexodia-wray") + (version "0.0.0-20160318003008-78a2c1f284ff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mrexodia/wray") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13fpq4sav9bb5g4vhq9lygimxzhslfp7nplfd5cyfgcxmckp5yrj")))) + (build-system go-build-system) + (arguments + (list + #:tests? #f ;tests are broken + #:import-path "github.com/mrexodia/wray")) + (native-inputs + (list go-github-com-smartystreets-goconvey)) + (home-page "https://github.com/mrexodia/wray") + (synopsis "Faye client for golang") + (description + "Wray is a client for the @url{http://faye.jcoglan.com/, Faye} +publish-subscribe messaging service. It's alternative fork of +@url{https://github.com/pythonandchips/wray}.") + (license license:expat))) + (define-public go-github-com-muhlemmer-httpforwarded (package (name "go-github-com-muhlemmer-httpforwarded") |
