summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2019-09-20 14:00:01 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2019-09-20 14:00:01 +0300
commit9ee0b3a20c747be96050600b48eda408d024c25b (patch)
tree8ea8ae46332b97f3aa481d3b030eb2547fc854a2
parentchannels.scm: Update. (diff)
downloadguix-wigust-9ee0b3a20c747be96050600b48eda408d024c25b.tar.gz
guix: Add emacs-apache-mode.
* guix/wigust/packages/emacs.scm (emacs-apache-mode): New variable.
-rw-r--r--guix/wigust/packages/emacs.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/guix/wigust/packages/emacs.scm b/guix/wigust/packages/emacs.scm
index df927fe..6d5a520 100644
--- a/guix/wigust/packages/emacs.scm
+++ b/guix/wigust/packages/emacs.scm
@@ -1415,3 +1415,24 @@ minor mode whose purpose is to automatically feed TRAMP sub-processes with
passwords for paths matching regexps.")
(license license:gpl3+))))
+(define-public emacs-apache-mode
+ (let ((commit "354f9302a8d805ac80d846adcd1cef10830b3d51"))
+ (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 "Major mode for editing Apache configuration files")
+ (description "This package provides an Emacs major mode for editing
+Apache configuration files.")
+ (license license:gpl2+))))
+