mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 18:38:57 -05:00
gnu: Add ruby-syntax-tree.
* gnu/packages/ruby.scm (ruby-syntax-tree): New variable.
This commit is contained in:
parent
01f2e9ed41
commit
d64d4ee295
1 changed files with 38 additions and 0 deletions
|
@ -12226,6 +12226,44 @@ (define-public ruby-language-server-protocol
|
||||||
(home-page "https://github.com/mtsmfm/language_server-protocol-ruby")
|
(home-page "https://github.com/mtsmfm/language_server-protocol-ruby")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-syntax-tree
|
||||||
|
(package
|
||||||
|
(name "ruby-syntax-tree")
|
||||||
|
(version "6.1.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch) ;for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ruby-syntax-tree/syntax_tree")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0356lgvqp22nkqlrgszf7myfdg4arclg278awh34zyby1cx6hb2k"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; The tests rely on the Gem being installed, so move the check
|
||||||
|
;; phase after the install phase.
|
||||||
|
(delete 'check)
|
||||||
|
(add-after 'install 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(setenv "GEM_PATH" (string-append
|
||||||
|
#$output "/lib/ruby/vendor_ruby:"
|
||||||
|
(getenv "GEM_PATH")))
|
||||||
|
(when tests?
|
||||||
|
(invoke "rake" "test")))))))
|
||||||
|
(native-inputs (list ruby-rubocop-ast ruby-simplecov))
|
||||||
|
(propagated-inputs (list ruby-prettier-print))
|
||||||
|
(synopsis "Fast Ruby parser and formatter")
|
||||||
|
(description "Syntax Tree is a suite of tools built on top of the internal
|
||||||
|
CRuby parser. It provides the ability to generate a syntax tree from source,
|
||||||
|
as well as the tools necessary to inspect and manipulate that syntax tree. It
|
||||||
|
can be used to build formatters, linters, language servers, and more.")
|
||||||
|
(home-page "https://github.com/ruby-syntax-tree/syntax_tree")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-mustache
|
(define-public ruby-mustache
|
||||||
(package
|
(package
|
||||||
(name "ruby-mustache")
|
(name "ruby-mustache")
|
||||||
|
|
Loading…
Reference in a new issue