guix-patches
[Top][All Lists]
Advanced

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

[bug#53622] [PATCH 7/8] gnu: Add emacs-apache-mode.


From: pinoaffe
Subject: [bug#53622] [PATCH 7/8] gnu: Add emacs-apache-mode.
Date: Sat, 29 Jan 2022 14:27:47 +0100
User-agent: mu4e 1.6.10; emacs 27.2

* gnu/packages/emacs-xyz.scm (emacs-apache-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fad6612dd2..653061eb99 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -810,6 +810,29 @@ (define-public emacs-ox-reveal
 simple but powerful Org contents.")
     (license license:gpl3+))))
 
+(define-public emacs-apache-mode
+  (package
+    (name "emacs-apache-mode")
+    (version "2.2.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/emacs-php/apache-mode.git";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1grs2x51k8pa6sgfa82s5pwwdfv7zw46ccw0zvd2rvzbhpq21p2z"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/emacs-php/apache-mode";)
+    (synopsis
+     "Syntax highlighting and indentation support for Apache config files")
+    (description
+     "This package provides @code{apache-mode}, an Emacs major mode for Apache
+configuration files which provides syntax highlighting and indentation rules.
+This mode supports Apache HTTP Server 2.4 and major modules.")
+    (license license:gpl2)))
+
 (define-public emacs-project
   (package
     (name "emacs-project")
-- 
2.34.0






reply via email to

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