ngz pushed a commit to branch master
in repository guix.

commit cbe8158e18d557f37350cb03afc39eb046c1ab3d
Author: gemmaro <[email protected]>
AuthorDate: Tue Aug 6 12:16:57 2024 +0900

    gnu: Add emacs-rbs-mode.
    
    * gnu/packages/emacs-xyz.scm (emacs-rbs-mode): New variable.
    
    Change-Id: I20b8b597426b355333375faaf97aa3f776cc369d
    Signed-off-by: Nicolas Goaziou <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a31e942e00..c5b1568a4a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3384,6 +3384,26 @@ on the eyes during night and day.  They only support GUI 
and 256 colour
 terminals.")
       (license license:gpl3+))))
 
+(define-public emacs-rbs-mode
+  (package
+    (name "emacs-rbs-mode")
+    (version "0.3.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ybiquitous/rbs-mode";)
+             (commit (string-append "v" version))))
+       (sha256
+        (base32 "1ibn8246q0yqdnf3qdww9rvzac9gla7gzjj0n5j5x08brgj5ll2h"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/ybiquitous/rbs-mode";)
+    (synopsis "Major mode for Ruby type signature")
+    (description
+     "RBS mode is a major mode for Ruby type signature language (RBS).  It
+provides basic supports for syntax highlighting and indentation.")
+    (license license:gpl3+)))
+
 (define-public emacs-reformatter
   (package
     (name "emacs-reformatter")

Reply via email to