gnu: emacs-evil: Update to 20180517.

* gnu/packages/emacs.scm (emacs-evil): Update to 20180517.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Pierre Neidhardt 2018-06-19 15:17:38 +02:00 committed by Ludovic Courtès
parent 5a74886ef5
commit 913f1f1ff7
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 23 additions and 21 deletions

View File

@ -4726,18 +4726,20 @@ news items, openrc and runscripts.")
(license license:gpl2+)))
(define-public emacs-evil
(let ((commit "230b87212c81aaa68ef5547a6b998d9c365fe139"))
(package
(name "emacs-evil")
(version "1.2.13")
(version (git-version "1.2.13" "1" commit))
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/emacs-evil/evil/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-evil/evil")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1z63zsxmsc6mh74wv6065carwqmgs7b7lz5044s12xvgsjfbwi8h"))))
"0c9zy3bpck10gcrv79kd3h7i4ygd5bgbgy773n0lg7a2r5kwn1gx"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-undo-tree" ,emacs-undo-tree)
@ -4748,7 +4750,7 @@ news items, openrc and runscripts.")
"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+)))
(license license:gpl3+))))
(define-public emacs-evil-collection
(let ((commit "ac21b8957cfc22485cdaa316384edf9cb220d837")