guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

16/66: gnu: Add ruby-racc.


From: guix-commits
Subject: 16/66: gnu: Add ruby-racc.
Date: Thu, 14 Feb 2019 16:38:33 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 6dc21310762a350779e5d183cf5c7494bca201e1
Author: Christopher Baines <address@hidden>
Date:   Sun Jan 27 13:30:23 2019 +0000

    gnu: Add ruby-racc.
    
    Required for ruby-ast and ruby-parser.
    
    * gnu/packages/ruby.scm (ruby-racc): New variable.
---
 gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 22aaf29..d9e2282 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -3677,6 +3677,32 @@ differences (added or removed nodes) between two 
XML/HTML documents.")
       (home-page "https://github.com/postmodern/nokogiri-diff";)
       (license license:expat))))
 
+(define-public ruby-racc
+  (package
+    (name "ruby-racc")
+    (version "1.4.14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "racc" version))
+       (sha256
+        (base32
+         "00yhs2ag7yy5v83mqvkbnhk9bvsh6mx3808k53n61ddzx446v1zl"))))
+    (build-system ruby-build-system)
+    (native-inputs
+     `(("ruby-hoe" ,ruby-hoe)
+       ("ruby-rake-compiler" ,ruby-rake-compiler)))
+    (synopsis "LALR(1) parser generator for Ruby")
+    (description
+     "Racc is a LALR(1) parser generator.  It is written in Ruby itself, and
+generates Ruby program.")
+    (home-page "http://i.loveruby.net/en/projects/racc/";)
+    (license (list
+              ;; Generally licensed under the LGPL2.1, and some files also
+              ;; available under the same license as Ruby.
+              license:lgpl2.1
+              license:ruby))))
+
 (define-public ruby-rack
   (package
     (name "ruby-rack")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]