diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2016-10-13 11:19:57 +0530 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2016-10-13 22:32:16 +0300 |
commit | 71d3ee1cbbccdf984c8f53d4b9596a4e06489769 (patch) | |
tree | 844c7769d7425773ccc86d0f26105c3f57eec2eb /gnu/packages/emacs.scm | |
parent | 2edbfbf58843f20114d555445d38f6e0ffd1f4e7 (diff) | |
download | guix-71d3ee1cbbccdf984c8f53d4b9596a4e06489769.tar guix-71d3ee1cbbccdf984c8f53d4b9596a4e06489769.tar.gz |
gnu: Add emacs-nginx-mode.
* gnu/packages/emacs.scm (emacs-nginx-mode): New variable.
Signed-off-by: Alex Kost <alezost@gmail.com>
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 18360e02f3..6e9c181b21 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3231,3 +3231,24 @@ display and edit the text. This package contains the library runtime.") (license license:lgpl2.1+))) + +(define-public emacs-nginx-mode + (package + (name "emacs-nginx-mode") + (version "1.1.4") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/ajc/nginx-mode/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1lvkj07kq0jkskr2f61vqb5rlrbnaz9a76ikq40w6925i2r970rr")))) + (build-system emacs-build-system) + (home-page "https://github.com/ajc/nginx-mode") + (synopsis "Emacs major mode for editing nginx config files") + (description "This package provides an Emacs major mode for +editing nginx config files.") + (license license:gpl2+))) |