diff options
author | pjotrp | 2025-09-02 08:37:16 +0200 |
---|---|---|
committer | pjotrp | 2025-09-02 08:37:16 +0200 |
commit | 80a0ef45bc8c048b4baa6055136307bd1816a190 (patch) | |
tree | 7fd6086d4bb624db3719ef8d9a60134c50c4be57 | |
parent | fcbe2919a1e4b168e8ec9ac995a6512360d56ac8 (diff) | |
download | guix-bioinformatics-80a0ef45bc8c048b4baa6055136307bd1816a190.tar.gz |
ruby-rdf-raptor: new variable
-rw-r--r-- | gn/packages/ruby.scm | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/gn/packages/ruby.scm b/gn/packages/ruby.scm index a528ba0..8922ebd 100644 --- a/gn/packages/ruby.scm +++ b/gn/packages/ruby.scm @@ -6129,7 +6129,7 @@ Also includes parsing modes for ISO EBNF and ABNF.") (description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.") (home-page "https://github.com/ruby-rdf/rdf-turtle") - (license license:expat))) + (license license:unlicense))) (define-public ruby-readline (package @@ -6239,4 +6239,24 @@ with the \"readline-ext\" gem and implemented in pure Ruby.") "RDF.rb is a pure-Ruby library for working with Resource Description Framework (RDF) data.") (home-page "https://github.com/ruby-rdf/rdf") + (license license:unlicense))) + +(define-public ruby-rdf-raptor + (package + (name "ruby-rdf-raptor") + (version "3.2.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "rdf-raptor" version)) + (sha256 + (base32 "01gl7gagydj4bmj99nrj2jb0dpavv1xrjr14bkyvwz9bk6ikq0s3")))) + (build-system ruby-build-system) + (propagated-inputs (list ruby-ffi ruby-rdf)) + (synopsis + "RDF.rb plugin for parsing/serializing NTriples, RDF/XML, Turtle and RDFa data using the Raptor RDF Parser library.") + (description + "RDF.rb plugin for parsing/serializing NTriples, RDF/XML, Turtle and RDFa data +using the Raptor RDF Parser library.") + (home-page "https://github.com/ruby-rdf/rdf-raptor") (license license:expat))) |