mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: emacs-evil: Update to 1.14.2.
* gnu/packages/emacs-xyz.scm (emacs-evil): Update to 1.14.2. [arguments]: Rewrite in gexp style.
This commit is contained in:
parent
a028eafcc2
commit
d58c9ca9e2
1 changed files with 14 additions and 14 deletions
|
@ -12075,7 +12075,7 @@ (define-public emacs-ebuild-mode
|
|||
(define-public emacs-evil
|
||||
(package
|
||||
(name "emacs-evil")
|
||||
(version "1.14.0")
|
||||
(version "1.14.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -12085,20 +12085,20 @@ (define-public emacs-evil
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"17xrn3s6a4afmls8fw8nnxa1jq9dmj2qqrxa2vngh50hxpz8840p"))))
|
||||
"1mhm1hd6gzxc2vvihh1w1j8f30xp0ssqcxnp8fx22niz04fk5df8"))))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'fix-test-helpers
|
||||
(lambda _
|
||||
(substitute* "evil-test-helpers.el"
|
||||
(("\\(undo-tree-mode 1\\)") ""))
|
||||
#t))
|
||||
(add-before 'install 'make-info
|
||||
(lambda _
|
||||
(with-directory-excursion "doc/build/texinfo"
|
||||
(invoke "makeinfo" "--no-split"
|
||||
"-o" "evil.info" "evil.texi")))))))
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'fix-test-helpers
|
||||
(lambda _
|
||||
(substitute* "evil-test-helpers.el"
|
||||
(("\\(undo-tree-mode 1\\)") ""))))
|
||||
(add-before 'install 'make-info
|
||||
(lambda _
|
||||
(with-directory-excursion "doc/build/texinfo"
|
||||
(invoke "makeinfo" "--no-split"
|
||||
"-o" "evil.info" "evil.texi")))))))
|
||||
(build-system emacs-build-system)
|
||||
(native-inputs (list texinfo))
|
||||
(home-page "https://github.com/emacs-evil/evil")
|
||||
|
|
Loading…
Reference in a new issue