mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add ruby-rdf.
* gnu/packages/ruby.scm (ruby-rdf): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
5e27bcf358
commit
033b2e6162
1 changed files with 22 additions and 0 deletions
|
@ -13184,3 +13184,25 @@ to RFC 5988. Objects can be constructed from and converted to text or a
|
|||
JSON-friendly @code{Array} representation. They can also be used to generate
|
||||
corresponding HTML @code{link} elements.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-rdf
|
||||
(package
|
||||
(name "ruby-rdf")
|
||||
(version "3.2.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "rdf" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1cj0k8ryd8hgbkgqb5swvy6fiygxny3y5bln0my5gv6dbfv3gm20"))))
|
||||
(build-system ruby-build-system)
|
||||
(propagated-inputs (list ruby-link-header))
|
||||
(arguments
|
||||
(list #:tests? #f)) ;; tests have many cyclic dependencies
|
||||
(home-page "https://ruby-rdf.github.io/")
|
||||
(synopsis "Linked Data for Ruby")
|
||||
(description
|
||||
"This gem contains the core algorithms and classes used for doing basic
|
||||
programming with @acronym{RDF, Resource Description Framework} data,
|
||||
implemented in pure Ruby.")
|
||||
(license license:unlicense)))
|
||||
|
|
Loading…
Reference in a new issue