mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add r-protolite
* gnu/packages/cran.scm: (r-protolite): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
c5baff1796
commit
2b6dd1bde5
1 changed files with 34 additions and 0 deletions
|
@ -96,6 +96,7 @@ (define-module (gnu packages cran)
|
|||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages pulseaudio) ;libsndfile
|
||||
#:use-module (gnu packages protobuf)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages sqlite)
|
||||
|
@ -29822,3 +29823,36 @@ (define-public r-webutils
|
|||
format. It includes an example of hosting and parsing HTML form data in R
|
||||
using either @code{httpuv} or @code{Rhttpd}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-protolite
|
||||
(package
|
||||
(name "r-protolite")
|
||||
(version "2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "protolite" version))
|
||||
(sha256
|
||||
(base32 "0mwpdlpxsxbj4s2s30d0w1h4dsg0j1jzzldh8kvxii9lpfkiv2gz"))))
|
||||
(properties `((upstream-name . "protolite")))
|
||||
(build-system r-build-system)
|
||||
(inputs
|
||||
`(("protobuf" ,protobuf)))
|
||||
(propagated-inputs
|
||||
`(("r-jsonlite" ,r-jsonlite)
|
||||
("r-rcpp" ,r-rcpp)))
|
||||
(native-inputs
|
||||
`(("protobuf" ,protobuf)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(home-page "https://github.com/jeroen/protolite")
|
||||
(synopsis "Highly optimized protocol buffer serializers")
|
||||
(description
|
||||
"This package provides pure C++ implementations for reading and writing
|
||||
several common data formats based on Google protocol-buffers. It currently
|
||||
supports @code{rexp.proto} for serialized R objects, @code{geobuf.proto} for
|
||||
binary geojson, and @code{mvt.proto} for vector tiles. This package uses the
|
||||
auto-generated C++ code by protobuf-compiler, hence the entire serialization
|
||||
is optimized at compile time. The @code{RProtoBuf} package on the other hand
|
||||
uses the protobuf runtime library to provide a general-purpose toolkit for
|
||||
reading and writing arbitrary protocol-buffer data in R.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue