gnu: emacs-groovy-modes: Update to version 2.1.
* gnu/packages/emacs-xyz.scm (emacs-groovy-modes): Update to version 2.1. [arguments]: Enable tests, running the test suite via 'ert-runner'. [native-inputs]: New field. [propagated-inputs]: Add emacs-dash.master
parent
3b2d3f1086
commit
94056224ea
|
@ -15979,25 +15979,34 @@ supports multiple backends such as @code{vlc}, @code{mpg123},
|
||||||
(define-public emacs-groovy-modes
|
(define-public emacs-groovy-modes
|
||||||
(package
|
(package
|
||||||
(name "emacs-groovy-modes")
|
(name "emacs-groovy-modes")
|
||||||
(version "2.0")
|
(version "2.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
|
(url "https://github.com/Groovy-Emacs-Modes\
|
||||||
(commit version)))
|
/groovy-emacs-modes")
|
||||||
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0c1d4cbnlny8gpcd20zr1wxx6ggf28jgh7sgd5r1skpsvjpbfqx2"))))
|
"1jpfyqnqd8nj0g8xbiw4ar2qzxx3pvhwibr6hdzhyy9mmc4yzdgk"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #t
|
||||||
|
#:test-command '("ert-runner")))
|
||||||
|
(native-inputs
|
||||||
|
`(("emacs-ert-runner" ,emacs-ert-runner)
|
||||||
|
("emacs-undercover" ,emacs-undercover)
|
||||||
|
("emacs-shut-up" ,emacs-shut-up)
|
||||||
|
("emacs-f" ,emacs-f)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-s" ,emacs-s)))
|
`(("emacs-dash" ,emacs-dash)
|
||||||
|
("emacs-s" ,emacs-s)))
|
||||||
(home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
|
(home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
|
||||||
(synopsis "Groovy related modes for Emacs")
|
(synopsis "Groovy related modes for Emacs")
|
||||||
(description
|
(description "This package provides @code{groovy-mode} for syntax
|
||||||
"This package provides @code{groovy-mode} for syntax highlighting in
|
highlighting in Groovy source files, REPL integration with run-groovy and
|
||||||
Groovy source files, REPL integration with run-groovy and Grails project
|
Grails project navigation with the grails mode.")
|
||||||
navigation with the grails mode.")
|
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-jenkinsfile-mode
|
(define-public emacs-jenkinsfile-mode
|
||||||
|
|
Reference in New Issue