diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2017-12-28 17:06:49 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2018-01-02 23:34:02 +0530 |
commit | ab8a4a78d53717f528149982a32c496ae1c874fa (patch) | |
tree | 1e8d77337a9ba928fa52287f1f7b71aed6049ce0 | |
parent | 02482f5d29a165bb0c58bfac29696189b6a46604 (diff) | |
download | guix-ab8a4a78d53717f528149982a32c496ae1c874fa.tar guix-ab8a4a78d53717f528149982a32c496ae1c874fa.tar.gz |
gnu: Add emacs-evil-smartparens.
* gnu/packages/emacs.scm (emacs-evil-smartparens): New variable.
-rw-r--r-- | gnu/packages/emacs.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 9f80f241b8..538c79a50f 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -6574,3 +6574,28 @@ Feautures: "@code{evil-matchit} is a minor mode for jumping between matching tags in evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.") (license license:gpl3+))) + +(define-public emacs-evil-smartparens + (package + (name "emacs-evil-smartparens") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/expez/evil-smartparens/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-evil" ,emacs-evil) + ("emacs-smartparens" ,emacs-smartparens))) + (home-page "https://github.com/expez/evil-smartparens") + (synopsis "Emacs Evil integration for Smartparens") + (description "@code{emacs-evil-smartparens} is an Emacs minor mode which +makes Evil play nice with Smartparens. Evil is an Emacs minor mode that +emulates Vim features and provides Vim-like key bindings.") + (license license:gpl3+))) |