summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2025-02-17 14:29:21 +0100
committerRicardo Wurmus <rekado@elephly.net>2025-02-17 14:29:56 +0100
commitf0d4daa13f0b57f5c03af73d449b2c6dd3160d08 (patch)
treec1b091a21c0bb734d68952f92263b58f2f47d84d /gnu
parent0fd97df074bc400c9a3580c3666d03d6bd74b187 (diff)
gnu: Add r-redland.
* gnu/packages/cran.scm (r-redland): New variable. Change-Id: I079d09e271c414e204f404fc8fcd2dbf1ea8ee3e
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/cran.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 3d6ea6be285..cec3a1cd710 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -106,6 +106,7 @@
106 #:use-module (gnu packages protobuf) 106 #:use-module (gnu packages protobuf)
107 #:use-module (gnu packages python) 107 #:use-module (gnu packages python)
108 #:use-module (gnu packages python-xyz) 108 #:use-module (gnu packages python-xyz)
109 #:use-module (gnu packages rdf)
109 #:use-module (gnu packages rust) 110 #:use-module (gnu packages rust)
110 #:use-module (gnu packages ssh) 111 #:use-module (gnu packages ssh)
111 #:use-module (gnu packages sqlite) 112 #:use-module (gnu packages sqlite)
@@ -5463,6 +5464,31 @@ convenience functions useful for using CSS selectors on XML nodes. This
5463package is a port of the Python package @code{cssselect}.") 5464package is a port of the Python package @code{cssselect}.")
5464 (license license:bsd-3))) 5465 (license license:bsd-3)))
5465 5466
5467(define-public r-redland
5468 (package
5469 (name "r-redland")
5470 (version "1.0.17-18")
5471 (source
5472 (origin
5473 (method url-fetch)
5474 (uri (cran-uri "redland" version))
5475 (sha256
5476 (base32 "183m1bvgj52w74383b5v6rfm7gn4izijixans1zdycqp68ibm6g9"))))
5477 (properties `((upstream-name . "redland")))
5478 (build-system r-build-system)
5479 (inputs (list redland pcre2 zlib))
5480 (propagated-inputs (list r-roxygen2))
5481 (native-inputs (list r-knitr pkg-config r-spelling r-stringi r-testthat))
5482 (home-page "https://cran.r-project.org/package=redland")
5483 (synopsis "RDF library bindings in R")
5484 (description
5485 "This package provides methods to parse, query and serialize information
5486stored in the @dfn{Resource Description Framework} (RDF). This package
5487supports RDF by implementing an R interface to the Redland RDF C library. In
5488brief, RDF provides a structured graph consisting of Statements composed of
5489Subject, Predicate, and Object Nodes.")
5490 (license license:asl2.0)))
5491
5466(define-public r-relations 5492(define-public r-relations
5467 (package 5493 (package
5468 (name "r-relations") 5494 (name "r-relations")