guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 493fec0f9018208c6f70187f6c2e02ab48f2d284
Author: Julian Flake <[email protected]>
AuthorDate: Fri Jul 17 09:39:49 2026 +0200

    gnu: Add emacs-cypher-ts-mode.
    
    * gnu/packages/emacs-xyz.scm (emacs-cypher-ts-mode): New variable.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
    Merges: guix/guix#9940
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 09b3e1fc2e..c59a7d7232 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7422,6 +7422,27 @@ eshell.")
 are used in the context of graph databases.")
     (license license:gpl2+))))
 
+(define-public emacs-cypher-ts-mode
+   (package
+    (name "emacs-cypher-ts-mode")
+    (version "0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://codeberg.org/nutcase/cypher-ts-mode";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0jcgq6wyci0z2x11w1illnmsp4g2w1hqlk4r4g282maxi8fzgqaf"))))
+    (build-system emacs-build-system)
+    (arguments (list #:tests? #f)) ; no tests
+    (home-page "https://codeberg.org/nutcase/cypher-ts-mode";)
+    (synopsis "Major mode for editing cypher scripts, powered by Tree-Sitter")
+    (description "This package provides a tree-sitter basedmajor mode for 
cypher
+files, which are used in the context of graph databases.")
+    (license license:gpl3+)))
+
 (define-public emacs-org-block-capf
   ;; There are no tagged releases upstream
   (let ((commit "080cfd2ed630a6739633b07a8ab6b896a1b5ef4a")

Reply via email to