guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-sql-indent.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-sql-indent.
Date: Thu, 04 Jan 2024 06:34:27 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new f65e3ec0df gnu: Add emacs-sql-indent.
f65e3ec0df is described below

commit f65e3ec0dfd250cbd56c3f3b508ee62d50bd7771
Author: Ian Eure <ian@retrospec.tv>
AuthorDate: Tue Nov 21 14:32:32 2023 -0800

    gnu: Add emacs-sql-indent.
    
    * gnu/packages/emacs-xyz.scm (emacs-sql-indent): New variable.
    
    Change-Id: I56a5f1c2e5256ed2ebcfe58ff99faffe49bf8519
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 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 39aab1b8c2..bce4191ae1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -22596,6 +22596,26 @@ objects.  All objects have to share a common 
superclass and subclasses cannot
 add any additional instance slots.")
     (license license:gpl3)))
 
+(define-public emacs-sql-indent
+  (package
+    (name "emacs-sql-indent")
+    (version "1.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/sql-indent-"; version
+                           ".tar"))
+       (sha256
+        (base32 "043qcy97a5hx68w0ac7xsk380l2i7bphgrdz6aby2zfpp90vrjpn"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/alex-hhh/emacs-sql-indent";)
+    (synopsis "Support for indenting code in SQL files")
+    (description
+     "This package provides a minor mode that enables syntax-based indentation
+for SQL mode buffers.  Indentation rules are flexible and can be customized to
+match your personal coding style.")
+    (license license:gpl3+)))
+
 (define-public emacs-epkg
   (package
     (name "emacs-epkg")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]