civodul pushed a commit to branch master
in repository guix.
commit 6a76811c596a4b7d20fcb26d296e6ab0d7db0d2a
Author: Juliana Sims <[email protected]>
AuthorDate: Tue Apr 18 13:05:32 2023 -0400
gnu: Add emacs-gerbil-mode.
* gnu/packages/emacs-xyz.scm (emacs-gerbil-mode): Add emacs-gerbil-mode.
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/emacs-xyz.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ad0e753d9a..86503d2706 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -125,6 +125,7 @@
;;; Copyright © 2022 Demis Balbach <[email protected]>
;;; Copyright © 2020, 2021, 2022, 2023 Andrew Tropin <[email protected]>
;;; Copyright © 2023 Dominik Delgado Steuter <[email protected]>
+;;; Copyright © 2023 Juliana Sims <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -36029,6 +36030,22 @@ audio volume via amixer.")
Fennel code within Emacs.")
(license license:gpl3+))))
+(define-public emacs-gerbil-mode
+ (package
+ (inherit gerbil)
+ (name "emacs-gerbil-mode")
+ (version "1.0")
+ (build-system emacs-build-system)
+ (arguments
+ (list #:phases #~(modify-phases %standard-phases
+ (add-before 'install 'change-directory
+ (lambda _
+ (chdir "etc"))))))
+ (synopsis "Emacs major-mode for editing Gerbil code")
+ (description
+ "Gerbil mode provides font-lock, indentation, navigation, and REPL for
+Gerbil code within Emacs.")))
+
(define-public emacs-org-modern
(package
(name "emacs-org-modern")