From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60995) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fBGSB-0008KM-PX for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fBGS6-00032Q-W2 for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59066) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fBGS6-00032I-TY for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fBGS6-0002a2-Nk for guix-patches@gnu.org; Wed, 25 Apr 2018 05:11:02 -0400 Subject: [bug#31256] [PATCH] gnu: Add emacs-evil-collection Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fBGRi-0007tj-3B for guix-patches@gnu.org; Wed, 25 Apr 2018 05:10:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fBGRf-0002pM-Cx for guix-patches@gnu.org; Wed, 25 Apr 2018 05:10:38 -0400 Received: from mail-pf0-x243.google.com ([2607:f8b0:400e:c00::243]:33502) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fBGRf-0002oy-6J for guix-patches@gnu.org; Wed, 25 Apr 2018 05:10:35 -0400 Received: by mail-pf0-x243.google.com with SMTP id f15so14663279pfn.0 for ; Wed, 25 Apr 2018 02:10:35 -0700 (PDT) Received: from localhost.localdomain ([103.104.112.4]) by smtp.gmail.com with ESMTPSA id k24sm26265034pff.147.2018.04.25.02.10.32 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 25 Apr 2018 02:10:33 -0700 (PDT) From: Pierre Neidhardt Date: Wed, 25 Apr 2018 14:40:21 +0530 Message-Id: <20180425091021.14188-1-ambrevar@gmail.com> 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: 31256@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-evil-collection): 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 3ddca5be4..758b0aec2 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4527,6 +4527,31 @@ main features of Vim, and provides facilities for writing custom extensions.") (license license:gpl3+))) +(define-public emacs-evil-collection + (let ((commit "f40704a57fd33b4bfad64147a2b771fc8961fdfc") + (revision "1")) + (package + (name "emacs-evil-collection") + (version (git-version "20180425" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-evil/evil-collection") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0qn19k0f3isnbi1hkmcf3qjxbyvp23m5ak5ny7623qgwb2nwz1l5")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-evil" ,emacs-evil))) + (home-page "https://github.com/emacs-evil/evil-collection") + (synopsis "Collection of Evil bindings for many major and minor modes") + (description "This is a collection of Evil bindings for the parts of +Emacs that Evil does not cover properly by default, such as help-mode, \"M-x +calendar\", Eshell and more.") + (license license:gpl3+)))) + (define-public emacs-goto-chg (package (name "emacs-goto-chg") -- 2.17.0