diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:58:23 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-28 11:21:18 +0000 |
commit | f2c07c2045aa3f3af2c83479bff6288baa62a493 (patch) | |
tree | 9ff1ffc2477504e05fa4d010c0c6cf556e5ad416 | |
parent | 1e2502fbc1000988c79a6bf9cc5eefcf98e95afe (diff) | |
download | guix-f2c07c2045aa3f3af2c83479bff6288baa62a493.tar guix-f2c07c2045aa3f3af2c83479bff6288baa62a493.tar.gz |
gnu: Add ruby-ast.
-rw-r--r-- | gnu/packages/ruby.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 07ff366522..74f37137ef 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -759,6 +759,31 @@ AsciiDoc content to HTML5, DocBook 5 (or 4.5), PDF, and other formats.") (home-page "https://asciidoctor.org") (license license:expat))) +(define-public ruby-ast + (package + (name "ruby-ast") + (version "2.3.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "ast" version)) + (sha256 + (base32 + "0pp82blr5fakdk27d1d21xq9zchzb6vmyb1zcsl520s3ygvprn8m")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ; TODO: run tests + (native-inputs + `(("bundler" ,bundler) + ("ruby-bacon" ,ruby-bacon) + ("ruby-racc" ,ruby-racc))) + (synopsis + "A library for working with Abstract Syntax Trees.") + (description + "This package provides a library for working with Abstract Syntax Trees.") + (home-page "https://whitequark.github.io/ast/") + (license license:expat))) + (define-public ruby-sporkmonger-rack-mount ;; Testing the addressable gem requires a newer commit than that released, so ;; use an up to date version. |