mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: emacs-vdiff: Enable tests.
* gnu/packages/emacs-xyz.scm (emacs-vdiff): Enable tests.
This commit is contained in:
parent
c83d7e964d
commit
ac87bc57af
1 changed files with 7 additions and 3 deletions
|
@ -17095,16 +17095,15 @@ (define-public emacs-equake
|
||||||
|
|
||||||
(define-public emacs-vdiff
|
(define-public emacs-vdiff
|
||||||
(let ((commit "09e15fc932bfd2febe1d4a65780a532394562b07")
|
(let ((commit "09e15fc932bfd2febe1d4a65780a532394562b07")
|
||||||
(version "0.2.3")
|
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-vdiff")
|
(name "emacs-vdiff")
|
||||||
(version (git-version version revision commit))
|
(version (git-version "0.2.3" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/justbur/emacs-vdiff/")
|
(url "https://github.com/justbur/emacs-vdiff.git")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
|
@ -17113,6 +17112,11 @@ (define-public emacs-vdiff
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-hydra" ,emacs-hydra)))
|
`(("emacs-hydra" ,emacs-hydra)))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #t
|
||||||
|
#:test-command '("emacs" "-Q" "-batch" "-L" "."
|
||||||
|
"-l" "vdiff-test.el"
|
||||||
|
"-f" "ert-run-tests-batch-and-exit")))
|
||||||
(home-page "https://github.com/justbur/emacs-vdiff/")
|
(home-page "https://github.com/justbur/emacs-vdiff/")
|
||||||
(synopsis "Frontend for diffing based on vimdiff")
|
(synopsis "Frontend for diffing based on vimdiff")
|
||||||
(description "This package permits comparisons of two or three buffers
|
(description "This package permits comparisons of two or three buffers
|
||||||
|
|
Loading…
Reference in a new issue