1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 20:10:39 +02:00

gnu: Add emacs-rbs-mode.

* gnu/packages/emacs-xyz.scm (emacs-rbs-mode): New variable.

Change-Id: I20b8b597426b355333375faaf97aa3f776cc369d
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
gemmaro 2024-08-06 12:16:57 +09:00 committed by Nicolas Goaziou
parent 2af8c6caff
commit cbe8158e18
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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")