From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34709) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eWLho-0003nw-O2 for guix-patches@gnu.org; Tue, 02 Jan 2018 07:30:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eWLhi-00061u-Sz for guix-patches@gnu.org; Tue, 02 Jan 2018 07:30:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:51897) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eWLhi-00061f-PT for guix-patches@gnu.org; Tue, 02 Jan 2018 07:30:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eWLhi-00029x-Ek for guix-patches@gnu.org; Tue, 02 Jan 2018 07:30:02 -0500 Subject: [bug#29878] [PATCH] gnu: Add emacs-evil-smartparens. References: <20171228113950.26120-1-arunisaac@systemreboot.net> In-Reply-To: <20171228113950.26120-1-arunisaac@systemreboot.net> Resent-Message-ID: From: Arun Isaac Date: Tue, 2 Jan 2018 17:58:31 +0530 Message-Id: <20180102122831.12201-1-arunisaac@systemreboot.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29878@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-evil-smartparens): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 9f80f241b..eb8356619 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 in Emacs.") + (license license:gpl3+))) -- 2.15.1