mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-rainbow-delimiters: Enable tests.
* gnu/packages/emacs-xyz.scm (emacs-rainbow-delimiters): Enable tests. [source] Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
5c1547383f
commit
61522fd967
1 changed files with 11 additions and 6 deletions
|
@ -6184,16 +6184,21 @@ completion, interactive development and more.")
|
||||||
(name "emacs-rainbow-delimiters")
|
(name "emacs-rainbow-delimiters")
|
||||||
(version "2.1.3")
|
(version "2.1.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://raw.githubusercontent.com/Fanael"
|
(uri (git-reference
|
||||||
"/rainbow-delimiters/" version
|
(url "https://github.com/Fanael/rainbow-delimiters.git")
|
||||||
"/rainbow-delimiters.el"))
|
(commit version)))
|
||||||
(file-name (string-append "rainbow-delimiters-" version ".el"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
|
"0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/Fanael/rainbow-delimiters")
|
(home-page "https://github.com/Fanael/rainbow-delimiters")
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #t
|
||||||
|
#:test-command '("emacs" "-Q" "-batch"
|
||||||
|
"-l" "rainbow-delimiters-test.el"
|
||||||
|
"-f" "ert-run-tests-batch-and-exit")))
|
||||||
(synopsis "Highlight brackets according to their depth")
|
(synopsis "Highlight brackets according to their depth")
|
||||||
(description
|
(description
|
||||||
"Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
|
"Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue