From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 2/2] gnu: Add emacs-evil. Date: Wed, 12 Oct 2016 23:00:27 +0000 Message-ID: <20161012230027.13576-3-ng0@we.make.ritual.n0.is> References: <20161012230027.13576-1-ng0@we.make.ritual.n0.is> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32896) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buSW5-0003Nh-Of for guix-devel@gnu.org; Wed, 12 Oct 2016 19:00:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1buSW3-0003do-AA for guix-devel@gnu.org; Wed, 12 Oct 2016 19:00:52 -0400 Received: from aibo.runbox.com ([91.220.196.211]:58755) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buSW3-0003de-3X for guix-devel@gnu.org; Wed, 12 Oct 2016 19:00:51 -0400 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1buSW2-0002yH-Ca for guix-devel@gnu.org; Thu, 13 Oct 2016 01:00:50 +0200 In-Reply-To: <20161012230027.13576-1-ng0@we.make.ritual.n0.is> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/emacs.scm (emacs-evil): New variable. --- gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index f04b71d..7ea7035 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2981,6 +2981,30 @@ Lua programing language}.") news items, openrc and runscripts.") (license license:gpl2+))) +(define-public emacs-evil + (package + (name "emacs-evil") + (version "20160827.1510") + (source + (origin + (method url-fetch) + (uri (string-append "https://melpa.org/packages/evil-" + version ".tar")) + (sha256 + (base32 + "1lq8b3yf4z6h0pgy80jk22q922d4l4pazbcrfyqyq9rfl34g8jvi")))) + (build-system emacs-build-system) + (inputs + `(("emacs-undo-tree" ,emacs-undo-tree) + ("emacs-goto-chg" ,emacs-goto-chg))) + (home-page "https://bitbucket.com/lyro/evil") + (synopsis "Extensible Vi layer for Emacs.") + (description + "Evil is an extensible vi layer for Emacs. It emulates the +main features of Vim, and provides facilities for writing custom +extensions.") + (license license:gpl3+))) + (define-public emacs-goto-chg (package (name "emacs-goto-chg") -- 2.10.1