civodul pushed a commit to branch master
in repository guix.
commit c3581ef968c7bcdd992b1960a19e3a4bcfa26280
Author: Mathieu Lirzin <[email protected]>
Date: Sun Apr 1 00:00:29 2018 +0200
gnu: Add emacs-emmet-mode.
* gnu/packages/emacs.scm (emacs-emmet-mode): New variable.
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/emacs.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 4b750b2..7c1b190 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -33,6 +33,7 @@
;;; Copyright © 2017 Mike Gerwitz <[email protected]>
;;; Copyright © 2017, 2018 Maxim Cournoyer <[email protected]>
;;; Copyright © 2018 Sohom Bhattacharjee <[email protected]>
+;;; Copyright © 2018 Mathieu Lirzin <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -7437,3 +7438,23 @@ directories of plain text notes, inspired by Notational
Velocity.")
matches\" in the mode line in various search modes. This is an Emacs port of
Anzu.zim.")
(license license:gpl3+)))
+
+(define-public emacs-emmet-mode
+ (package
+ (name "emacs-emmet-mode")
+ (version "1.0.8")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/smihica/emmet-mode"
+ "/archive/" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/smihica/emmet-mode")
+ (synopsis "Unofficial Emmet's support for Emacs")
+ (description
+ "Unfold CSS-selector-like expressions to markup. It is intended to be
+used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
+ (license license:gpl3+)))