This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 49b38c1721 gnu: Add rassumfrassum.
49b38c1721 is described below
commit 49b38c1721e3b39845ee04d017ff860128d1388f
Author: Raven Hallsby <[email protected]>
AuthorDate: Thu Jan 15 20:58:19 2026 -0600
gnu: Add rassumfrassum.
* gnu/packages/text-editor.scms.scm (rassumfrassum): New variable.
Merges: https://codeberg.org/guix/guix/pulls/5740
Change-Id: Ifc7cc57aec60c3de2e730e575b03ade1dd5b4be7
Reviewed-by: Nguyễn Gia Phong <[email protected]>
Modified-by: Sharlatan Hellseher <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/text-editors.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index aedb74318a..17ee361da6 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -81,6 +81,7 @@
#:use-module (gnu packages bash)
#:use-module (gnu packages base)
#:use-module (gnu packages boost)
+ #:use-module (gnu packages check)
#:use-module (gnu packages cmake)
#:use-module (gnu packages code)
#:use-module (gnu packages compression)
@@ -567,6 +568,38 @@ library intended to be loaded by the
@command{emacs-parinfer-rust-mode} Emacs
plugin, though a standalone binary is built also.")
(license license:isc)))
+(define-public rassumfrassum
+ (package
+ (name "rassumfrassum")
+ (version "0.3.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/joaotavora/rassumfrassum")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1jjfx0a4qp2mdvr8ripf44r056fa4spmmhdpvpli89bl5711lm0l"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "./test/run-all.sh")))))))
+ (native-inputs
+ (list python-setuptools))
+ (home-page "https://github.com/joaotavora/rassumfrassum")
+ (synopsis "LSP/JSON-RPC multiplexer")
+ (description
+ "Rassumfrassum is a LSP/JSONRPC multiplexer that allows one LSP client
+(Emacs' @code{eglot}, Neovim, etc.) to connect to multiple language servers
+seamlessly.")
+ (license license:gpl3+)))
+
(define-public featherpad
(package
(name "featherpad")